Description: Disable GDB autoload script on armhf to avoid assembler errors.
 On armhf the GDB autoload script causes assembler errors:
 Warning: invalid section entity size
 Error: changed section attributes for .debug_gdb_scripts
 Error: changed section entity size for .debug_gdb_scripts
Author: Joachim Reichel <reichel@debian.org>

Index: cgal-6.2/include/CGAL/gdb_autoload.h
===================================================================
--- cgal-6.2.orig/include/CGAL/gdb_autoload.h
+++ cgal-6.2/include/CGAL/gdb_autoload.h
@@ -20,7 +20,7 @@
 #ifndef CGAL_GDB_AUTOLOAD_H
 #define CGAL_GDB_AUTOLOAD_H
 
-#if defined(__ELF__) && (defined(__GNUC__) || defined(__clang__))
+#if defined(__ELF__) && (defined(__GNUC__) || defined(__clang__)) && !defined(__arm__)
 // ELF format (Linux, BSD) with GCC or Clang
 
 // Use inline assembly to embed the .debug_gdb_scripts section
