This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[AVR][Committed] Disable building libssp for AVR
- From: Anatoly Sokolov <aesok at post dot ru>
- To: gcc-patches <gcc-patches at gcc dot gnu dot org>
- Cc: eweddington at cso dot atmel dot com, aesok at post dot ru
- Date: Fri, 11 Apr 2008 16:33:59 +0400
- Subject: [AVR][Committed] Disable building libssp for AVR
Hello.
This patch disables building libssp for the AVR. For 4.x, one has to
configure the AVR port with --disable-libssp, which did not have to be done
for 3.x.
http://gcc.gnu.org/ml/gcc-patches/2007-11/msg00136.html
Anatoly.
2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
* configure.ac: Do not build libssp for the AVR.
* configure: Regenerate.
Index: configure
===================================================================
--- configure (revision 133916)
+++ configure (working copy)
@@ -2326,7 +2326,7 @@
noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
;;
avr-*-*)
- noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
+ noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj} target-libssp"
;;
bfin-*-*)
noconfigdirs="$noconfigdirs gdb"
Index: configure.ac
===================================================================
--- configure.ac (revision 133916)
+++ configure.ac (working copy)
@@ -588,7 +588,7 @@
noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
;;
avr-*-*)
- noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
+ noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj} target-libssp"
;;
bfin-*-*)
noconfigdirs="$noconfigdirs gdb"