diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-29 13:47:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-29 14:01:48 +0100 |
commit | 4d041557e7d3c6ff8fa5f2e0abae14839f4be9cf (patch) | |
tree | 884324aa8341f9bb257eafa34365b3f23be6a8fe /meta/conf | |
parent | 9281315002e99420da81efc803874bfcddd99de4 (diff) | |
download | poky-4d041557e7d3c6ff8fa5f2e0abae14839f4be9cf.tar.gz |
bitbake.conf: Disable -feliminate-dwarf2-dups flag until it works with prelink and other issues are resolved
(From OE-Core rev: 43dd780ace029c231f70424a510c934f436e513c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 6b6b2ee21c..56c7bbb42c 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -451,7 +451,8 @@ EXTRA_OEMAKE_prepend_task-compile = "${PARALLEL_MAKE} " | |||
451 | ################################################################## | 451 | ################################################################## |
452 | # Optimization flags. | 452 | # Optimization flags. |
453 | ################################################################## | 453 | ################################################################## |
454 | DEBUG_FLAGS ?= "-g -feliminate-unused-debug-types -feliminate-dwarf2-dups" | 454 | DEBUG_FLAGS ?= "-g -feliminate-unused-debug-types" |
455 | # Disabled until the option works properly -feliminate-dwarf2-dups | ||
455 | FULL_OPTIMIZATION = "-O2 -pipe ${DEBUG_FLAGS}" | 456 | FULL_OPTIMIZATION = "-O2 -pipe ${DEBUG_FLAGS}" |
456 | DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer ${DEBUG_FLAGS} -pipe" | 457 | DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer ${DEBUG_FLAGS} -pipe" |
457 | SELECTED_OPTIMIZATION = "${@bb.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][bb.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" | 458 | SELECTED_OPTIMIZATION = "${@bb.data.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'][bb.data.getVar('DEBUG_BUILD', d, 1) == '1'], d, 1)}" |