Skip to content
Merged
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
9 changes: 2 additions & 7 deletions buildkite/build_project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -273,19 +273,14 @@ case "$REPO_FULL_NAME" in
cmake .. \
-GNinja \
-DCMAKE_BUILD_TYPE=Debug \
-DD_COMPILER="$DC" \
-DCMAKE_SYSTEM_NAME=Linux # work around gen_gccbuiltins linker issue with llvm-8 pkg
-DD_COMPILER="$DC"
ninja -j2 ldmd2 druntime-ldc-debug phobos2-ldc-debug
cd ..
mkdir build && cd build
# LDC_LINK_MANUALLY=OFF works around an LDC 1.24.0 problem with CMAKE_BUILD_TYPE=Debug
# without *release* host druntime/Phobos.
cmake .. \
-GNinja \
-DCMAKE_BUILD_TYPE=Debug \
-DD_COMPILER="$(pwd)/../bootstrap/bin/ldmd2" \
-DLDC_LINK_MANUALLY=OFF \
-DCMAKE_SYSTEM_NAME=Linux # work around gen_gccbuiltins linker issue with llvm-8 pkg
-DD_COMPILER="$(pwd)/../bootstrap/bin/ldmd2"
ninja -j2 ldc2 druntime-ldc phobos2-ldc
;;

Expand Down