diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2019-01-23 22:53:12 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-26 13:39:37 +0000 |
| commit | c2d4e9831ae77aa4642145a32b6d78c751a33ea6 (patch) | |
| tree | 8eb35bd272a3f1900aa8963edcf22255b311afa8 | |
| parent | 043d6ac1f6daec64e3ead5549cd415d1cad16201 (diff) | |
| download | poky-c2d4e9831ae77aa4642145a32b6d78c751a33ea6.tar.gz | |
bitbake.conf: Add DEBUG_BUILD to vardeps
Otherwise the recipe would not be rebuilt when enable/disable DEBUG_BUILD.
(From OE-Core rev: e9b21f586980f6d4fbb213845f5e788b6c8d3813)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -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 4ee14c68bf..ab00ac2f06 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
| @@ -609,8 +609,9 @@ DEBUG_FLAGS ?= "-g -feliminate-unused-debug-types ${DEBUG_PREFIX_MAP}" | |||
| 609 | FULL_OPTIMIZATION = "-O2 -pipe ${DEBUG_FLAGS}" | 609 | FULL_OPTIMIZATION = "-O2 -pipe ${DEBUG_FLAGS}" |
| 610 | DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer ${DEBUG_FLAGS} -pipe" | 610 | DEBUG_OPTIMIZATION = "-O -fno-omit-frame-pointer ${DEBUG_FLAGS} -pipe" |
| 611 | SELECTED_OPTIMIZATION = "${@d.getVar(oe.utils.vartrue('DEBUG_BUILD', 'DEBUG_OPTIMIZATION', 'FULL_OPTIMIZATION', d))}" | 611 | SELECTED_OPTIMIZATION = "${@d.getVar(oe.utils.vartrue('DEBUG_BUILD', 'DEBUG_OPTIMIZATION', 'FULL_OPTIMIZATION', d))}" |
| 612 | SELECTED_OPTIMIZATION[vardeps] += "FULL_OPTIMIZATION DEBUG_OPTIMIZATION" | 612 | SELECTED_OPTIMIZATION[vardeps] += "FULL_OPTIMIZATION DEBUG_OPTIMIZATION DEBUG_BUILD" |
| 613 | BUILD_OPTIMIZATION = "${@oe.utils.vartrue('DEBUG_BUILD', '-O -g -feliminate-unused-debug-types -fno-omit-frame-pointer', '-O2', d)} -pipe" | 613 | BUILD_OPTIMIZATION = "${@oe.utils.vartrue('DEBUG_BUILD', '-O -g -feliminate-unused-debug-types -fno-omit-frame-pointer', '-O2', d)} -pipe" |
| 614 | BUILD_OPTIMIZATION[vardeps] += "DEBUG_BUILD" | ||
| 614 | 615 | ||
| 615 | ################################################################## | 616 | ################################################################## |
| 616 | # Settings used by bitbake-layers. | 617 | # Settings used by bitbake-layers. |
