5
5
set -e
6
6
# set -x
7
7
8
- if [ -f ./gcc_path ]; then
9
- export GCC_PATH=$( cat gcc_path)
10
- else
11
- echo ' Please put the path to your custom build of libgccjit in the file `gcc_path`, see Readme.md for details'
12
- exit 1
13
- fi
14
-
15
- export LD_LIBRARY_PATH=" $GCC_PATH "
16
- export LIBRARY_PATH=" $GCC_PATH "
17
-
18
8
flags=
19
9
gcc_master_branch=1
20
10
channel=" debug"
21
11
funcs=()
22
12
build_only=0
23
13
nb_parts=0
24
14
current_part=0
15
+ use_system_gcc=0
16
+ use_backend=0
17
+ cargo_target_dir=" "
18
+
19
+ export CHANNEL=' debug'
25
20
26
21
while [[ $# -gt 0 ]]; do
27
22
case $1 in
28
23
--release)
29
24
codegen_channel=release
30
25
channel=" release"
26
+ export CHANNEL=' release'
31
27
shift
32
28
;;
33
29
--release-sysroot)
@@ -111,6 +107,22 @@ while [[ $# -gt 0 ]]; do
111
107
build_only=1
112
108
shift
113
109
;;
110
+ " --use-system-gcc" )
111
+ use_system_gcc=1
112
+ shift
113
+ ;;
114
+ " --use-backend" )
115
+ use_backend=1
116
+ shift
117
+ export BUILTIN_BACKEND=$1
118
+ shift
119
+ ;;
120
+ " --out-dir" )
121
+ shift
122
+ export CARGO_TARGET_DIR=$1
123
+ cargo_target_dir=$1
124
+ shift
125
+ ;;
114
126
" --nb-parts" )
115
127
shift
116
128
nb_parts=$1
@@ -128,13 +140,25 @@ while [[ $# -gt 0 ]]; do
128
140
esac
129
141
done
130
142
131
- if [[ $channel == " release" ]]; then
132
- export CHANNEL=' release'
133
- CARGO_INCREMENTAL=1 cargo rustc --release $flags
143
+ if [ -f ./gcc_path ]; then
144
+ export GCC_PATH=$( cat gcc_path)
145
+ elif (( $use_system_gcc == 1 )) ; then
146
+ echo ' Using system GCC'
134
147
else
135
- echo $LD_LIBRARY_PATH
136
- export CHANNEL=' debug'
137
- cargo rustc $flags
148
+ echo ' Please put the path to your custom build of libgccjit in the file `gcc_path`, see Readme.md for details'
149
+ exit 1
150
+ fi
151
+
152
+ export LD_LIBRARY_PATH=" $GCC_PATH "
153
+ export LIBRARY_PATH=" $GCC_PATH "
154
+
155
+ if [[ $use_backend == 0 ]]; then
156
+ if [[ $channel == " release" ]]; then
157
+ CARGO_INCREMENTAL=1 cargo rustc --release $flags
158
+ else
159
+ echo $LD_LIBRARY_PATH
160
+ cargo rustc $flags
161
+ fi
138
162
fi
139
163
140
164
if (( $build_only == 1 )) ; then
145
169
source config.sh
146
170
147
171
function clean() {
148
- rm -r target/out || true
149
- mkdir -p target/out /gccjit
172
+ rm -r $cargo_target_dir || true
173
+ mkdir -p $cargo_target_dir /gccjit
150
174
}
151
175
152
176
function mini_tests() {
153
177
echo " [BUILD] mini_core"
154
178
crate_types=" lib,dylib"
179
+
155
180
if [[ " $HOST_TRIPLE " != " $TARGET_TRIPLE " ]]; then
156
181
crate_types=" lib"
157
182
fi
158
- $RUSTC example/mini_core.rs --crate-name mini_core --crate-type $crate_types --target $TARGET_TRIPLE
183
+
184
+ $RUST_CMD example/mini_core.rs --crate-name mini_core --crate-type $crate_types --target $TARGET_TRIPLE
159
185
160
186
echo " [BUILD] example"
161
- $RUSTC example/example.rs --crate-type lib --target $TARGET_TRIPLE
187
+ $RUST_CMD example/example.rs --crate-type lib --target $TARGET_TRIPLE
162
188
163
189
echo " [AOT] mini_core_hello_world"
164
- $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g --target $TARGET_TRIPLE
165
- $RUN_WRAPPER ./target/out /mini_core_hello_world abc bcd
190
+ $RUST_CMD example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g --target $TARGET_TRIPLE
191
+ $RUN_WRAPPER $cargo_target_dir /mini_core_hello_world abc bcd
166
192
}
167
193
168
194
function build_sysroot() {
@@ -189,42 +215,42 @@ function run_in_vm() {
189
215
190
216
function std_tests() {
191
217
echo " [AOT] arbitrary_self_types_pointers_and_wrappers"
192
- $RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin --target $TARGET_TRIPLE
193
- $RUN_WRAPPER ./target/out /arbitrary_self_types_pointers_and_wrappers
218
+ $RUST_CMD example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin --target $TARGET_TRIPLE
219
+ $RUN_WRAPPER $cargo_target_dir /arbitrary_self_types_pointers_and_wrappers
194
220
195
221
echo " [AOT] alloc_system"
196
- $RUSTC example/alloc_system.rs --crate-type lib --target " $TARGET_TRIPLE "
222
+ $RUST_CMD example/alloc_system.rs --crate-type lib --target " $TARGET_TRIPLE "
197
223
198
224
# FIXME: doesn't work on m68k.
199
225
if [[ " $HOST_TRIPLE " == " $TARGET_TRIPLE " ]]; then
200
226
echo " [AOT] alloc_example"
201
- $RUSTC example/alloc_example.rs --crate-type bin --target $TARGET_TRIPLE
202
- $RUN_WRAPPER ./target/out /alloc_example
227
+ $RUST_CMD example/alloc_example.rs --crate-type bin --target $TARGET_TRIPLE
228
+ $RUN_WRAPPER $cargo_target_dir /alloc_example
203
229
fi
204
230
205
231
echo " [AOT] dst_field_align"
206
232
# FIXME(antoyo): Re-add -Zmir-opt-level=2 once rust-lang/rust#67529 is fixed.
207
- $RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target $TARGET_TRIPLE
208
- $RUN_WRAPPER ./target/out /dst_field_align || (echo $? ; false)
233
+ $RUST_CMD example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target $TARGET_TRIPLE
234
+ $RUN_WRAPPER $cargo_target_dir /dst_field_align || (echo $? ; false)
209
235
210
236
echo " [AOT] std_example"
211
237
std_flags=" --cfg feature=\" master\" "
212
238
if (( $gcc_master_branch == 0 )) ; then
213
239
std_flags=" "
214
240
fi
215
- $RUSTC example/std_example.rs --crate-type bin --target $TARGET_TRIPLE $std_flags
216
- $RUN_WRAPPER ./target/out /std_example --target $TARGET_TRIPLE
241
+ $RUST_CMD example/std_example.rs --crate-type bin --target $TARGET_TRIPLE $std_flags
242
+ $RUN_WRAPPER $cargo_target_dir /std_example --target $TARGET_TRIPLE
217
243
218
244
echo " [AOT] subslice-patterns-const-eval"
219
- $RUSTC example/subslice-patterns-const-eval.rs --crate-type bin $TEST_FLAGS --target $TARGET_TRIPLE
220
- $RUN_WRAPPER ./target/out /subslice-patterns-const-eval
245
+ $RUST_CMD example/subslice-patterns-const-eval.rs --crate-type bin $TEST_FLAGS --target $TARGET_TRIPLE
246
+ $RUN_WRAPPER $cargo_target_dir /subslice-patterns-const-eval
221
247
222
248
echo " [AOT] track-caller-attribute"
223
- $RUSTC example/track-caller-attribute.rs --crate-type bin $TEST_FLAGS --target $TARGET_TRIPLE
224
- $RUN_WRAPPER ./target/out /track-caller-attribute
249
+ $RUST_CMD example/track-caller-attribute.rs --crate-type bin $TEST_FLAGS --target $TARGET_TRIPLE
250
+ $RUN_WRAPPER $cargo_target_dir /track-caller-attribute
225
251
226
252
echo " [BUILD] mod_bench"
227
- $RUSTC example/mod_bench.rs --crate-type bin --target $TARGET_TRIPLE
253
+ $RUST_CMD example/mod_bench.rs --crate-type bin --target $TARGET_TRIPLE
228
254
}
229
255
230
256
function setup_rustc() {
@@ -233,7 +259,7 @@ function setup_rustc() {
233
259
git clone https://github.com/rust-lang/rust.git || true
234
260
cd rust
235
261
git fetch
236
- git checkout $( rustc -V | cut -d' ' -f3 | tr -d ' (' )
262
+ git checkout $( $RUSTC -V | cut -d' ' -f3 | tr -d ' (' )
237
263
export RUSTFLAGS=
238
264
239
265
rm config.toml || true
@@ -258,8 +284,8 @@ llvm-filecheck = "`which FileCheck-10 || which FileCheck-11 || which FileCheck-1
258
284
download-ci-llvm = false
259
285
EOF
260
286
261
- rustc -V | cut -d' ' -f3 | tr -d ' ('
262
- git checkout $( rustc -V | cut -d' ' -f3 | tr -d ' (' ) tests
287
+ $RUSTC -V | cut -d' ' -f3 | tr -d ' ('
288
+ git checkout $( $RUSTC -V | cut -d' ' -f3 | tr -d ' (' ) tests
263
289
}
264
290
265
291
function asm_tests() {
@@ -286,17 +312,17 @@ function test_libcore() {
286
312
# echo "[BENCH COMPILE] mod_bench"
287
313
288
314
# COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
289
- # COMPILE_MOD_BENCH_LLVM_0="rustc example/mod_bench.rs --crate-type bin -Copt-level=0 -o target/out /mod_bench_llvm_0 -Cpanic=abort"
290
- # COMPILE_MOD_BENCH_LLVM_1="rustc example/mod_bench.rs --crate-type bin -Copt-level=1 -o target/out /mod_bench_llvm_1 -Cpanic=abort"
291
- # COMPILE_MOD_BENCH_LLVM_2="rustc example/mod_bench.rs --crate-type bin -Copt-level=2 -o target/out /mod_bench_llvm_2 -Cpanic=abort"
292
- # COMPILE_MOD_BENCH_LLVM_3="rustc example/mod_bench.rs --crate-type bin -Copt-level=3 -o target/out /mod_bench_llvm_3 -Cpanic=abort"
315
+ # COMPILE_MOD_BENCH_LLVM_0="rustc example/mod_bench.rs --crate-type bin -Copt-level=0 -o $cargo_target_dir /mod_bench_llvm_0 -Cpanic=abort"
316
+ # COMPILE_MOD_BENCH_LLVM_1="rustc example/mod_bench.rs --crate-type bin -Copt-level=1 -o $cargo_target_dir /mod_bench_llvm_1 -Cpanic=abort"
317
+ # COMPILE_MOD_BENCH_LLVM_2="rustc example/mod_bench.rs --crate-type bin -Copt-level=2 -o $cargo_target_dir /mod_bench_llvm_2 -Cpanic=abort"
318
+ # COMPILE_MOD_BENCH_LLVM_3="rustc example/mod_bench.rs --crate-type bin -Copt-level=3 -o $cargo_target_dir /mod_bench_llvm_3 -Cpanic=abort"
293
319
294
320
# # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
295
321
# hyperfine --runs ${COMPILE_RUNS:-100} "$COMPILE_MOD_BENCH_INLINE" "$COMPILE_MOD_BENCH_LLVM_0" "$COMPILE_MOD_BENCH_LLVM_1" "$COMPILE_MOD_BENCH_LLVM_2" "$COMPILE_MOD_BENCH_LLVM_3"
296
322
297
323
# echo
298
324
# echo "[BENCH RUN] mod_bench"
299
- # hyperfine --runs ${RUN_RUNS:-10} ./target/out/ mod_bench{,_inline} ./target/out /mod_bench_llvm_*
325
+ # hyperfine --runs ${RUN_RUNS:-10} $cargo_target_dir/ mod_bench{,_inline} $cargo_target_dir /mod_bench_llvm_*
300
326
301
327
function extended_rand_tests() {
302
328
if (( $gcc_master_branch == 0 )) ; then
0 commit comments