]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
authorrobertmh <robertmh@localhost>
Sat, 24 Oct 2009 23:26:53 +0000 (23:26 +0000)
committerrobertmh <robertmh@localhost>
Sat, 24 Oct 2009 23:26:53 +0000 (23:26 +0000)
        * configure.ac: Check for `__ashldi3', `__ashrdi3', `__lshrdi3',
        `__trampoline_setup' and `__ucmpdi2'.
        * include/grub/powerpc/libgcc.h: Only export symbols for functions
        that libgcc provides.

ChangeLog
configure.ac
include/grub/powerpc/libgcc.h

index 9df4447553e4eea88c3dac9dc9c046da68f1b2df..ce28aed16df2fdc56b94a9aa0bd0dfaa734bf362 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-10-25  Robert Millan  <rmh.grub@aybabtu.com>
+
+       * configure.ac: Check for `__ashldi3', `__ashrdi3', `__lshrdi3',
+       `__trampoline_setup' and `__ucmpdi2'.
+       * include/grub/powerpc/libgcc.h: Only export symbols for functions
+       that libgcc provides.
+
 2009-10-25  Robert Millan  <rmh.grub@aybabtu.com>
 
        * include/grub/powerpc/libgcc.h (memset): Remove function prototype.
index bf113ba684cbfdb4b9ed0a90d0608136e6a8e92c..048333ba550f8d8d4e3d859d39fbdce0cae70768 100644 (file)
@@ -412,7 +412,7 @@ AC_SUBST(TARGET_CPPFLAGS)
 AC_SUBST(TARGET_LDFLAGS)
 
 # Check for libgcc symbols (must be performed before we add -nostdlib to LDFLAGS)
-AC_CHECK_FUNCS(__bswapsi2 __bswapdi2)
+AC_CHECK_FUNCS(__bswapsi2 __bswapdi2 __ashldi3 __ashrdi3 __lshrdi3 __trampoline_setup __ucmpdi2)
 
 # Set them to their new values for the tests below.
 CC="$TARGET_CC"
index c32fcd87ff6ad8ed78acd3a7297ef1c3dc3093fe..452ad436641a03a5f01ee9b3b47f984b951e9038 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2004,2007  Free Software Foundation, Inc.
+ *  Copyright (C) 2004,2007,2009  Free Software Foundation, Inc.
  *
  *  GRUB is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
+
+#ifdef HAVE___ASHLDI3
 void EXPORT_FUNC (__ashldi3) (void);
+#endif
+#ifdef HAVE___ASHRDI3
 void EXPORT_FUNC (__ashrdi3) (void);
+#endif
+#ifdef HAVE___LSHRDI3
 void EXPORT_FUNC (__lshrdi3) (void);
+#endif
+#ifdef HAVE___TRAMPOLINE_SETUP
 void EXPORT_FUNC (__trampoline_setup) (void);
+#endif
+#ifdef HAVE___UCMPDI2
 void EXPORT_FUNC (__ucmpdi2) (void);
+#endif