]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't use `#cpu'.
authorGerd Moellmann <gerd@gnu.org>
Mon, 20 Nov 2000 19:45:24 +0000 (19:45 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 20 Nov 2000 19:45:24 +0000 (19:45 +0000)
src/s/gnu-linux.h

index d7bd8b966457130af1fec9465f4ace984dee6eb6..786db29155d70fd910a98ab044d7d1fb196ed941 100644 (file)
@@ -329,6 +329,10 @@ Boston, MA 02111-1307, USA.  */
    jmp_buf.  */
 /* m68k and alpha aren't tested, but there are Debian packages for SCM
    and/or Guile on them, so the technique must work.  */
-#if #cpu (i386) || #cpu (sparc) || #cpu (m68k) || #cpu (alpha)
+
+/* Don't use #cpu here since in newest development versions of GCC,
+   we must call cpp with -traditional, and that disables #cpu.  */
+
+#if defined __i386__ || defined __sparc__ || defined __m68k__ || defined __alpha__
 #define GC_SETJMP_WORKS 1
 #endif