Subj : Re: "ERROR: GROUP DGROUP exceeds 64k" To : borland.public.cpp.borlandcpp From : "ms" Date : Thu Nov 20 2003 05:59 am Sorry to keep bothering people but.... Have found out about an -Ff command by surfing the net. My understanding is that any any global data value above 9 will be put into the FARDATA segment. This is my make file and have included it as shown below (-Ff=9) --------------------------------------- # for Imake #--------------------------------------- TARGET = ..\inspect.exe INC = $x{*.h} SRC = $x{*.c} OBJ = ${SRC:.c=.obj} CC = c:\borlandc\bin\bcc -ml -Ff=9 -c LINK = c:\borlandc\bin\bcc -ml -e..\inspect # .silent ${TARGET}: ${OBJ} # .echo linking $(LINK) ${OBJ} graphics.lib ..c.obj: # .echo compile : $< $(CC) $< ${OBJ}: $#.c ${INC} Have tried different numbers ie -Ff=100 but no joy. Have very few arrays greater than 100. Am I doing it correctly or is this even possible? Really appeciate any time spent looking at my problem Ms .