Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/do_build_druntime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ $? -ne 0 ]; then
fi

if [ "$2" != "Win_32" -a "$2" != "Win_32_64" ]; then
$makecmd DMD=../dmd/src/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile install >> ../druntime-build.log 2>&1
$makecmd DMD=../dmd/generated/*/release/$COMPILER_MODEL/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile install >> ../druntime-build.log 2>&1
if [ $? -ne 0 ]; then
echo -e "\tfailed to install $repo"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion src/do_build_phobos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ $? -ne 0 ]; then
fi

if [ "$2" != "Win_32" -a "$2" != "Win_32_64" ]; then
$makecmd DMD=../dmd/src/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile install >> ../phobos-build.log 2>&1
$makecmd DMD=../dmd/generated/*/release/$COMPILER_MODEL/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile install >> ../phobos-build.log 2>&1
if [ $? -ne 0 ]; then
echo -e "\tfailed to install $repo"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion src/do_html_phobos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo -e "\tgenerating html"

cd $1/phobos

DMD=../dmd/src/dmd
DMD=../dmd/generated/*/release/$COMPILER_MODEL/dmd
DOC=../web/2.0

if [ "${2:0:4}" == "Win_" ]; then
Expand Down
2 changes: 1 addition & 1 deletion src/do_test_druntime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ "$2" == "stub" ]; then
exit 0
fi

$makecmd DMD=../dmd/src/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile auto-tester-test >> ../druntime-unittest.log 2>&1
$makecmd DMD=../dmd/generated/*/release/$COMPILER_MODEL/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile auto-tester-test >> ../druntime-unittest.log 2>&1
if [ $? -ne 0 ]; then
echo -e "\tdruntime unittest failed to build"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion src/do_test_phobos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "$2" in
;;
esac

$makecmd DMD=../dmd/src/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile auto-tester-test >> ../phobos-unittest.log 2>&1
$makecmd DMD=../dmd/generated/*/release/$COMPILER_MODEL/dmd MODEL=$OUTPUT_MODEL $EXTRA_ARGS -f $makefile auto-tester-test >> ../phobos-unittest.log 2>&1
if [ $? -ne 0 ]; then
echo -e "\tphobos tests failed"
exit 1
Expand Down