From 578254d4ad7d5db65f86a3c575b05ce35f74030e Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 17 Jun 2013 16:11:52 +0000 Subject: [PATCH] fix Jamfile for release with production asserts build config --- Jamfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jamfile b/Jamfile index e0d2834bb..51650c267 100755 --- a/Jamfile +++ b/Jamfile @@ -66,8 +66,9 @@ rule linking ( properties * ) # dbghelp doesn't appear to exist in mingw if windows in $(properties) && ! gcc in $(properties) - && ( on in $(properties) - || debug in $(properties) + && ( debug in $(properties) + || on in $(properties) + || production in $(properties) || on in $(properties) ) { result += dbghelp ; @@ -139,9 +140,10 @@ rule linking ( properties * ) if gcc in $(properties) && linux in $(properties) - && (debug in $(properties) + && ( debug in $(properties) || on in $(properties) - || production in $(properties)) + || production in $(properties) + || on in $(properties) ) { # for backtraces in assertion failures # which only works on ELF targets with gcc