19ec872f16
Drop first patch and pass -fPIC to configure to fix the following build failure on ARC: ERROR: architecture for "/usr/lib/libdmalloc.so" is "ARCompact", should be "ARCv2" ERROR: architecture for "/usr/lib/libdmallocth.so" is "ARCompact", should be "ARCv2" ERROR: architecture for "/usr/lib/libdmallocthcxx.so" is "ARCompact", should be "ARCv2" ERROR: architecture for "/usr/lib/libdmallocxx.so" is "ARCompact", should be "ARCv2" This build failure is due to the following configure error: checking shared library link args... ./configure: line 4467: 10229 Segmentation fault ( ${LD-ld} -shared --whole-archive -soname conftest.so -o conftest.so.t conftest.a ) 2>&5 /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-ld -G -o $@.t This configure error is due to missing -fPIC: configure:4392: checking shared library link args configure:4398: /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-gcc -c -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 conftest.c >&5 configure:4404: $? = 0 configure:4408: test -z || test ! -s conftest.err configure:4411: $? = 0 configure:4414: test -s conftest.o configure:4417: $? = 0 /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-ld: conftest.a(conftest.o): relocation R_ARC_32_ME against `__stack_chk_guard' can not be used when making a shared object; recompile with -fPIC /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-ld: BFD (GNU Binutils) 2.33.50.20191002 assertion fail elf32-arc.c:1805 /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-ld: unrecognized option '-all' /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-ld: use the --help option for usage information configure:4475: result: /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arc-buildroot-linux-gnu-ld -G -o $@.t Fixes: - http://autobuild.buildroot.org/results/65677d889c27649e1f3ca1f3b6c70df7c89779f6 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
44 lines
950 B
Diff
44 lines
950 B
Diff
--- a/configure
|
|
+++ b/configure
|
|
@@ -7107,7 +7107,7 @@
|
|
echo $ECHO_N "checking return.h macros work... $ECHO_C" >&6
|
|
if test "$cross_compiling" = yes; then
|
|
cat >>confdefs.h <<\_ACEOF
|
|
-#define RETURN_MACROS_WORK 0
|
|
+#define RETURN_MACROS_WORK 1
|
|
_ACEOF
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
--- a/return.h
|
|
+++ b/return.h
|
|
@@ -106,26 +106,16 @@
|
|
/*************************************/
|
|
|
|
/*
|
|
- * For DEC Mips machines running Ultrix
|
|
+ * For Mips machines running Linux
|
|
*/
|
|
#if __mips
|
|
|
|
/*
|
|
- * I have no idea how to get inline assembly with the default cc.
|
|
- * Anyone know how?
|
|
- */
|
|
-
|
|
-#if 0
|
|
-
|
|
-/*
|
|
* NOTE: we assume here that file is global.
|
|
*
|
|
- * $31 is the frame pointer. $2 looks to be the return address but maybe
|
|
- * not consistently.
|
|
+ * $31 is the return address.
|
|
*/
|
|
-#define GET_RET_ADDR(file) asm("sw $2, file")
|
|
-
|
|
-#endif
|
|
+#define GET_RET_ADDR(file) asm("sw $31, %0" : "=m" (file))
|
|
|
|
#endif /* __mips */
|
|
|