diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-13 22:07:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-13 22:08:55 +0000 |
commit | 300f858ba07c938427ccd05a3d7220027a03d461 (patch) | |
tree | eecf6071ea426345b5deb6c571ae82fab85ba18c /meta | |
parent | 4be0e15f74cff85edca9de55248939fb438f30ae (diff) | |
download | openembedded-core-300f858ba07c938427ccd05a3d7220027a03d461.tar.gz openembedded-core-300f858ba07c938427ccd05a3d7220027a03d461.tar.bz2 openembedded-core-300f858ba07c938427ccd05a3d7220027a03d461.zip |
local.conf.sample: Disable prelink by default
prelink is having issues with IFUNC symbols such as tha for fork() in
libpthread. Disable prelink for now until we can get to the bottom of
the issue.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/local.conf.sample | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 38ee656950..5e93caf54b 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample @@ -129,7 +129,8 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks" # - 'image-swab' to perform host system intrusion detection # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended -USER_CLASSES ?= "buildstats image-mklibs image-prelink" +# image-prelink disabled for now due to issues with IFUNC symbol relocation +USER_CLASSES ?= "buildstats image-mklibs" # |