removed bogus "-Wl" parameter from linker invocation as gcc >= 4.7.0 chokes on it

This commit is contained in:
Christian Kroll 2012-10-22 01:55:06 +00:00
parent 9e85e46214
commit c38e02d601
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ MACHINE = $(shell uname -m)
ifeq ($(OSTYPE),cygwin)
CFLAGS_SIM = -g -Wall -pedantic -std=c99 -O0 -D_WIN32 -D_XOPEN_SOURCE=600
LDFLAGS_SIM = -Wl -T simulator/i386pe.x
LDFLAGS_SIM = -T simulator/i386pe.x
LIBS_SIM = -lgdi32 -lwinmm -lm
else
CFLAGS_SIM = -g -Wall -pedantic -std=c99 -O0 -D_XOPEN_SOURCE=600