comparison src/s/gnu-linux.h @ 43071:768349ffc7f7

Check for __mc68000__ instead of __m68k__, the latter never being defined on GNU/Linux.
author Andreas Schwab <schwab@suse.de>
date Sat, 02 Feb 2002 23:02:42 +0000
parents 464d0a0dcf2e
children a62b272dc382
comparison
equal deleted inserted replaced
43070:f1106407a9cc 43071:768349ffc7f7
336 and/or Guile on them, so the technique must work. */ 336 and/or Guile on them, so the technique must work. */
337 337
338 /* Don't use #cpu here since in newest development versions of GCC, 338 /* Don't use #cpu here since in newest development versions of GCC,
339 we must call cpp with -traditional, and that disables #cpu. */ 339 we must call cpp with -traditional, and that disables #cpu. */
340 340
341 #if defined __i386__ || defined __sparc__ || defined __m68k__ || defined __alpha__ 341 #if defined __i386__ || defined __sparc__ || defined __mc68000__ || defined __alpha__
342 #define GC_SETJMP_WORKS 1 342 #define GC_SETJMP_WORKS 1
343 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS 343 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
344 #endif 344 #endif