From 67679b3ac4efe8dc4dba3538637bdfd54f2b27bf Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 12 Mar 1998 20:45:39 +0000 Subject: [PATCH] use no bitfield option only on the 68k --- src/drv/old/Makefile.Vx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/drv/old/Makefile.Vx b/src/drv/old/Makefile.Vx index 2474d9627..62aaccf44 100644 --- a/src/drv/old/Makefile.Vx +++ b/src/drv/old/Makefile.Vx @@ -2,12 +2,14 @@ TOP = ../../../.. include $(TOP)/config/CONFIG_BASE +CMPLR = TRAD + VX_WARN_YES = -Wall -pedantic -# The pc486 cross-compiler has no "nobitfield" option -kuk- -ifeq ($(ARCH_CLASS),pc486) -USR_CFLAGS = -fshared-data -fvolatile -traditional +# Only the 68k cross-compiler has no "nobitfield" option -kuk- +ifeq ($(ARCH_CLASS),68k) +USR_CFLAGS = -fshared-data -fvolatile -mnobitfield else -USR_CFLAGS = -fshared-data -fvolatile -mnobitfield -traditional +USR_CFLAGS = -fshared-data -fvolatile endif INC += drvBB232.h