This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH][AVR] Disable building libssp for AVR


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.

Successful build with host=i686-pc-mingw32.

Eric Weddington


2007-10-19  Eric B. Weddington  <eweddington@cso.atmel.com>

	* configure.ac: Do not build libssp for the AVR.



--- configure.ac	2007-05-30 07:48:07.000000000 -0600
+++ configure.ac	2007-07-29 08:33:39.642875000 -0600
@@ -504,7 +504,7 @@ case "${target}" in
     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 Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]