Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 1 | From 19c117c3d1388654da484e26afb3fb6c3e4181a9 Mon Sep 17 00:00:00 2001 |
| 2 | From: Daniel Klauer <daniel.klauer@gin.de> |
| 3 | Date: Tue, 30 Jul 2019 11:39:09 +0200 |
| 4 | Subject: [PATCH] Build debug version of bjam |
| 5 | |
| 6 | bjam is stripped by default, this causes QA warning while stripping it |
| 7 | from do_populate_sysroot(): |
| 8 | |
| 9 | WARNING: File '.../tmp/sysroots/x86_64-linux/usr/bin/bjam' \ |
| 10 | from bjam-native was already stripped, \ |
| 11 | this will prevent future debugging! |
| 12 | |
| 13 | The JAM scripts allow to build unstripped version with '--debug'. Just |
| 14 | build and install the bjam.debug to stop bjam from being stripped in |
| 15 | compile step. |
| 16 | |
| 17 | Upstream-Status: Inappropriate [configuration] |
| 18 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| 19 | --- |
| 20 | bootstrap.sh | 2 +- |
| 21 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 22 | |
| 23 | diff --git a/bootstrap.sh b/bootstrap.sh |
| 24 | index ca0b08d58..87f38dcf2 100755 |
| 25 | --- a/bootstrap.sh |
| 26 | +++ b/bootstrap.sh |
| 27 | @@ -223,7 +223,7 @@ rm -f config.log |
| 28 | if test "x$BJAM" = x; then |
| 29 | $ECHO -n "Building Boost.Build engine with toolset $TOOLSET... " |
| 30 | pwd=`pwd` |
| 31 | - (cd "$my_dir/tools/build/src/engine" && ./build.sh "$TOOLSET") > bootstrap.log 2>&1 |
| 32 | + (cd "$my_dir/tools/build/src/engine" && ./build.sh "$TOOLSET" --debug) > bootstrap.log 2>&1 |
| 33 | if [ $? -ne 0 ]; then |
| 34 | echo |
| 35 | echo "Failed to build Boost.Build build engine" |
| 36 | -- |
| 37 | 2.17.1 |
| 38 | |