mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
Use default argument set for bootstrap builds
This commit is contained in:
parent
7f05a442aa
commit
8f4bee9fe6
1 changed files with 3 additions and 1 deletions
|
@ -127,11 +127,13 @@ fi
|
||||||
|
|
||||||
"$HOST_DC" -m$MODEL -g -i run.d
|
"$HOST_DC" -m$MODEL -g -i run.d
|
||||||
targets=("all")
|
targets=("all")
|
||||||
|
args=('ARGS=-O -inline -g') # no -release for faster builds
|
||||||
if [ "$HOST_DMD_VERSION" = "2.079.0" ] ; then
|
if [ "$HOST_DMD_VERSION" = "2.079.0" ] ; then
|
||||||
# do not run runnable_cxx or unit_tests with older bootstrap compilers
|
# do not run runnable_cxx or unit_tests with older bootstrap compilers
|
||||||
targets=("compilable" "fail_compilation" "runnable" "dshell")
|
targets=("compilable" "fail_compilation" "runnable" "dshell")
|
||||||
|
args=() # use default set of args
|
||||||
fi
|
fi
|
||||||
./run --environment --jobs=$N "${targets[@]}" ARGS="-O -inline -g" MODEL="$MODEL"
|
./run --environment --jobs=$N "${targets[@]}" "${args[@]}" MODEL="$MODEL"
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Prepare artifacts
|
# Prepare artifacts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue