]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2010-01-01 Robert Millan <rmh.grub@aybabtu.com>
authorRobert Millan <rmh@aybabtu.com>
Fri, 1 Jan 2010 18:54:44 +0000 (18:54 +0000)
committerRobert Millan <rmh@aybabtu.com>
Fri, 1 Jan 2010 18:54:44 +0000 (18:54 +0000)
Make ia32 libc unnecessary on amd64.

* configure.ac (CFLAGS): Move down after the basic gcc tests are
done.  Add `-nostdlib'.

ChangeLog
configure.ac

index a4d1cbae1c9f487f5a2174d714aab94825701494..055db92e3bc7ce1e38d63810baf133a8a7529d4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-01-01  Robert Millan  <rmh.grub@aybabtu.com>
+
+       Make ia32 libc unnecessary on amd64.
+
+       * configure.ac (CFLAGS): Move down after the basic gcc tests are
+       done.  Add `-nostdlib'.
+
 2009-12-24  Robert Millan  <rmh.grub@aybabtu.com>
 
        * configure.ac: Bump version to 0.6.96.
index 2b1e812e651609d4818eb673ad55518aba6745e3..6ce920ae5ac5442a864c912696b18c0daacb69af 100644 (file)
@@ -1,5 +1,5 @@
 dnl Configure script for GRUB.
-dnl Copyright 1999,2000,2001,2002,2003,2004,2005,2008,2009 Free Software Foundation, Inc.
+dnl Copyright 1999,2000,2001,2002,2003,2004,2005,2008,2009,2010 Free Software Foundation, Inc.
 
 dnl Permission to use, copy, modify and distribute this software and its
 dnl documentation is hereby granted, provided that both the copyright
@@ -18,8 +18,6 @@ AC_CONFIG_SRCDIR([docs/multiboot.texi])
 AC_CONFIG_HEADER([config.h])
 AM_INIT_AUTOMAKE
 
-CFLAGS="-m32 $CFLAGS"
-
 #
 # Programs
 #
@@ -44,6 +42,7 @@ dnl Because recent automake complains about CCASFLAGS, set it here.
 CCASFLAGS='$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)'
 AC_SUBST(CCASFLAGS)
 
+CFLAGS="-m32 -nostdlib $CFLAGS"
 
 dnl Output.
 AC_CONFIG_FILES([Makefile docs/Makefile])