+++ This bug was initially created as a clone of Bug #607302 +++ dev-lisp/sbcl-1.3.14 suffers from the same issue already reported in #599902 and #607302. The following patch seems to fix it (even though it's not necessary the right thing to do). --- sbcl-1.3.14/src/runtime/GNUmakefile.jj 2017-02-09 09:35:21.250150777 +0700 +++ sbcl-1.3.14/src/runtime/GNUmakefile 2017-02-09 09:37:10.776309180 +0700 @@ -39,18 +39,6 @@ # OS_SRC, OS_LIBS, OS_CLEAN_FILES include Config -# Disable PIE when possible -ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e no-pie),) -CFLAGS += -fno-pie -LINKFLAGS += -no-pie -LDFLAGS += -no-pie -endif -ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e -nopie),) -CFLAGS += -fno-pie -LINKFLAGS += -nopie -LDFLAGS += -nopie -endif - COMMON_SRC = alloc.c backtrace.c breakpoint.c coreparse.c dynbind.c \ funcall.c gc-common.c globals.c interr.c interrupt.c \ largefile.c monitor.c os-common.c parse.c print.c purify.c \
--- sbcl-1.3.14.ebuild.jj 2017-02-09 09:45:14.496203434 +0700 +++ sbcl-1.3.14.ebuild 2017-02-09 09:52:29.703433261 +0700 @@ -101,6 +101,8 @@ eapply "${FILESDIR}"/bsd-sockets-test-1.3.12.patch # bugs #560276, #561018 eapply "${FILESDIR}"/sb-posix-test-1.2.15.patch + # bug #599902, #607302, #608678 + eapply "${FILESDIR}"/${PN}-1.3.14-config.patch eapply "${FILESDIR}"/${PN}-1.2.11-solaris.patch eapply "${FILESDIR}"/${PN}-1.2.13-verbose-build.patch
Created attachment 462912 [details] emerge --info output
My bad here, I didn't check the -no-pie flag in the GNUMakefile. I will apply the patch asap Thanks for the report
*** This bug has been marked as a duplicate of bug 607302 ***