[Glibc-bsd-commits] r5974 - trunk/kfreebsd-10/debian

stevenc-guest at alioth.debian.org stevenc-guest at alioth.debian.org
Fri Apr 1 21:28:34 UTC 2016


Author: stevenc-guest
Date: 2016-04-01 21:28:34 +0000 (Fri, 01 Apr 2016)
New Revision: 5974

Modified:
   trunk/kfreebsd-10/debian/changelog
   trunk/kfreebsd-10/debian/rules
Log:
Disable Stack Smashing Protection when building with GCC
(see #819754)


Modified: trunk/kfreebsd-10/debian/changelog
===================================================================
--- trunk/kfreebsd-10/debian/changelog	2016-03-24 14:59:01 UTC (rev 5973)
+++ trunk/kfreebsd-10/debian/changelog	2016-04-01 21:28:34 UTC (rev 5974)
@@ -1,3 +1,10 @@
+kfreebsd-10 (10.3~svn296998-2) UNRELEASED; urgency=medium
+
+  * Disable Stack Smashing Protection when building with GCC
+    (see #819754)
+
+ -- Steven Chamberlain <steven at pyro.eu.org>  Fri, 01 Apr 2016 22:24:32 +0100
+
 kfreebsd-10 (10.3~svn296998-1) experimental; urgency=medium
 
   * New upstream snapshot of 10.3-RC3:

Modified: trunk/kfreebsd-10/debian/rules
===================================================================
--- trunk/kfreebsd-10/debian/rules	2016-03-24 14:59:01 UTC (rev 5973)
+++ trunk/kfreebsd-10/debian/rules	2016-04-01 21:28:34 UTC (rev 5974)
@@ -69,6 +69,8 @@
 cc_cmd		:= clang-3.5
 else
 cc_cmd		:= gcc-5
+# Disable Stack Smashing Protection when building with GCC (see #819754)
+MAKE	+= -DWITHOUT_SSP
 endif
 
 ifeq ($(cc_cmd), clang)




More information about the Glibc-bsd-commits mailing list