Displaying 4 results from an estimated 4 matches for "pie_test".
Did you mean:
pipe_test
2011 Mar 29
1
[PATCH] Fix gpxe compilation when gcc is patched to compile by default with -fPIE -Wl, -pie
...usekeeping
@@ -134,6 +134,16 @@ SP_FLAGS := $(shell $(SP_TEST) && $(ECHO) '-fno-stack-protector')
CFLAGS += $(SP_FLAGS)
endif
+# Some widespread patched versions of gcc include -fPIE -Wl,-pie by
+# default. gpxe does not support pie code in get_cpuinfo.
+#
+ifeq ($(CCTYPE),gcc)
+PIE_TEST = $(CC) -fno-PIE -nopie -x c -c /dev/null \
+ -o /dev/null >/dev/null 2>&1
+PIE_FLAGS := $(shell $(PIE_TEST) && $(ECHO) '-fno-PIE -nopie')
+CFLAGS += $(PIE_FLAGS)
+endif
+
# gcc 4.4 generates .eh_frame sections by default, which distort the
# output of "size"....
2011 Dec 09
1
[PATCH] Fix compilation when gcc is patched to default to -fPIE -Wl, -pie
...+# Some widespread patched versions of gcc include -fPIE -Wl,-pie by
+# default. Note that gcc will exit *successfully* if it fails to
+# recognise an option that starts with "no", so we have to test for
+# output on stderr instead of checking the exit status.
+#
+ifeq ($(CCTYPE),gcc)
+PIE_TEST = [ -z "`$(CC) -fno-PIE -nopie -x c -c /dev/null -o /dev/null 2>&1`" ]
+PIE_FLAGS := $(shell $(PIE_TEST) && $(ECHO) '-fno-PIE -nopie')
+CFLAGS += $(PIE_FLAGS)
+endif
+
# gcc 4.4 generates .eh_frame sections by default, which distort the
# output of "size"...
2018 Jun 04
5
6.0.1-rc2 has been tagged
Hi,
The 6.0.1-rc2 release has been tagged. Testers may begin testing and
reporting results.
-Tom
2018 Apr 26
7
6.0.1-rc1 has been tagged
Hi,
I've just tagged the 6.0.1-rc1 release. Testers may begin testing and uploading
binaries. Also, any tester who has not tested 5.0.2-rc1 and would like to do
so please try to do this before Friday, because I would like to tag 5.0.2-final then.
As a reminder to users and developers, May 18 is the deadline for submitting
merge requests for 6.0.1, so there is still time to get bug fixes