Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <kenlm@kheafield.com>2011-11-22 22:13:44 +0400
committerKenneth Heafield <kenlm@kheafield.com>2011-11-22 22:13:44 +0400
commit076d94dd9ea02f9759a5a1ab042fa8d029292294 (patch)
treee185be167504156e206db7bd6392d771af99b6f3 /Jamroot
parentcc7edff099bf9867c573924cf971aefbaf36ff54 (diff)
Jam: Had inverted --notrace by accident. -g on by default at Barry's request.
Diffstat (limited to 'Jamroot')
-rw-r--r--Jamroot6
1 files changed, 4 insertions, 2 deletions
diff --git a/Jamroot b/Jamroot
index 0988785cc..20ef3d238 100644
--- a/Jamroot
+++ b/Jamroot
@@ -16,11 +16,12 @@
#
#By default, the build is multi-threaded, optimized, and statically linked.
#
-#General help with bjam:
+#Compilation modes:
#threading=single compiles single-threaded
#variant=debug for debugging (or just "debug")
#variant=profile for profiling
#link=shared for dynamic linking
+#debug-symbols=off to disable debugging symbols
#
#-a to build from scratch
#-j$NCPUS to compile in parallel
@@ -53,13 +54,14 @@ if [ SHELL $(TOP)"/jam-files/test.sh -static -lz" ] != 0 {
lib z ;
}
-trace = [ option.get "notrace" : : <define>TRACE_ENABLE=1 ] ;
+trace = [ option.get "notrace" : <define>TRACE_ENABLE=1 ] ;
project : default-build
<threading>multi
<warnings>on
<variant>release
<link>static
+ <debug-symbols>on
;
project : requirements