From 2e6d867c44cfbef364e574209d412fa976b8a375 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 12 Mar 2018 06:55:44 +0100 Subject: [PATCH] Build DMD, Druntime + Phobos in debug mode --- buildkite/clone_repositories.sh | 2 +- vars/runPipeline.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildkite/clone_repositories.sh b/buildkite/clone_repositories.sh index 86cbf371..c91f7df0 100755 --- a/buildkite/clone_repositories.sh +++ b/buildkite/clone_repositories.sh @@ -47,5 +47,5 @@ done for dir in dmd druntime phobos ; do echo "--- Building $dir" - make -C $dir -f posix.mak AUTO_BOOTSTRAP=1 --jobs=4 + make -C $dir -f posix.mak AUTO_BOOTSTRAP=1 --jobs=4 BUILD=debug done diff --git a/vars/runPipeline.groovy b/vars/runPipeline.groovy index 7805a6de..101483e3 100644 --- a/vars/runPipeline.groovy +++ b/vars/runPipeline.groovy @@ -397,7 +397,7 @@ def buildDlang() { // expects previous one to be already built and present in parent // folder - def action = { sh "make -f posix.mak AUTO_BOOTSTRAP=1 --jobs=4" } + def action = { sh "make -f posix.mak AUTO_BOOTSTRAP=1 --jobs=4 BUILD=debug" } dir('dmd', action) dir('druntime', action)