Use int 3 as G_BREAKPOINT on x86-64 too. Hopefully fixes #648838.
authorZoltan Varga <vargaz@gmail.com>
Sat, 23 Oct 2010 18:38:12 +0000 (20:38 +0200)
committerZoltan Varga <vargaz@gmail.com>
Sat, 23 Oct 2010 18:38:12 +0000 (20:38 +0200)
eglib/configure.ac

index 1f1c8528a18923d9ca51372f55a2a7403fe1d1c7..b1a81eaaeae35d4471668e3e10e6b58a796df768 100644 (file)
@@ -14,9 +14,8 @@ BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END"
 if test x$GCC = xyes; then
    GNUC_UNUSED='__attribute__((__unused__))'
    GNUC_NORETURN='__attribute__((__noreturn__))'
-   echo target_cpu=$target_cpu
    case $target_cpu in
-     i*86) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;;
+     i*86|x86_64) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;;
    esac
 fi
 AC_SUBST(GNUC_PRETTY)