diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-04-24 22:22:09 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-28 09:52:23 +0100 |
commit | b4a0124d2896276e115d20585dc0657da36a0846 (patch) | |
tree | e3f628d422249a05716bc371db48501317eab902 /meta/recipes-devtools | |
parent | 3a08c401f298095840a2aee9079845f5ff434410 (diff) | |
download | openembedded-core-b4a0124d2896276e115d20585dc0657da36a0846.tar.gz openembedded-core-b4a0124d2896276e115d20585dc0657da36a0846.tar.bz2 openembedded-core-b4a0124d2896276e115d20585dc0657da36a0846.zip |
gdb: set --without-ust for EXTRA_OEFLAGS
Disable using UST since there are some compiler errors with
the newer version of lttng-ust 0.12, there may be other unknow
problems, so wait for upstream fixes.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-common.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 84e36baed6..95a38b5956 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc @@ -29,7 +29,10 @@ EXPAT = "--without-expat" EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x \ --with-curses --disable-multilib --with-system-readline --disable-sim \ - ${GDBPROPREFIX} --with-libelf=${STAGING_DIR_TARGET} ${EXPAT}" + ${GDBPROPREFIX} --with-libelf=${STAGING_DIR_TARGET} ${EXPAT} \ + --without-ust \ + " + GDBPROPREFIX = "--program-prefix=''" do_configure () { |