File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,19 @@ echo $JAVA_HOME
15
15
args_app=(
16
16
" --verbose"
17
17
" --native-compiler-path=$( brew --prefix llvm) /bin/clang"
18
- " --native-compiler-options='-I$( brew --prefix llvm) /include -L$( brew --prefix llvm) /lib'"
18
+ " --native-compiler-options=-I$( brew --prefix llvm) /include"
19
+ " --native-compiler-options=-L$( brew --prefix llvm) /lib"
20
+ " -H:-CheckToolchain" # Disable toolchain validation
19
21
" -jar" " target/main.uberjar.jar"
20
22
" -H:Name=dtlv"
21
23
)
22
24
23
25
args_test0=(
24
26
" --verbose"
25
- " --native-compiler-path=/usr/local/opt/llvm/bin/clang"
26
- " --native-compiler-options='-I$( brew --prefix llvm) /include -L$( brew --prefix llvm) /lib'"
27
+ " --native-compiler-path=$( brew --prefix llvm) /bin/clang"
28
+ " --native-compiler-options=-I$( brew --prefix llvm) /include"
29
+ " --native-compiler-options=-L$( brew --prefix llvm) /lib"
30
+ " -H:-CheckToolchain" # Disable toolchain validation
27
31
" -jar" " target/test0.uberjar.jar"
28
32
" -H:Name=dtlv-test0"
29
33
)
You can’t perform that action at this time.
0 commit comments