diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-15 10:30:56 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-15 21:46:55 +0200 |
commit | d07c292757ed0773ef38e629642aa1aa15e786a9 (patch) | |
tree | 6c7b12f2d2463de35543c2cf6e9c59ad6c38c735 /conf/bitbake.conf | |
parent | aa03004ace2fabb135a6208ef8c2d2b312aa7b0b (diff) |
[commit] Allow the distribution to set the hash-style and enable it for angstrom
With binutils >= 2.17 we can use --hash-style=both and this will work
with all versions of glibc. glibc >= 2.5 can take advantage of the new hash
style and should give better application startup.
Diffstat (limited to 'conf/bitbake.conf')
-rw-r--r-- | conf/bitbake.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index a655fcb24c..e1dc3aa10a 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -403,7 +403,8 @@ export BUILD_LDFLAGS = "-L${STAGING_LIBDIR_NATIVE} \ export LDFLAGS = "${TARGET_LDFLAGS}" export TARGET_LDFLAGS = "-L${STAGING_DIR_TARGET}${layout_libdir} \ -Wl,-rpath-link,${STAGING_DIR_TARGET}${layout_libdir} \ - -Wl,-O1" + -Wl,-O1 \ + ${TARGET_LINK_HASH_STYLE} " # Which flags to leave by strip-flags() in bin/build/oebuild.sh ? ALLOWED_FLAGS = "-O -mcpu -march -pipe" |