Skip to content
Snippets Groups Projects
Commit 51680dd7 authored by rswindell's avatar rswindell
Browse files

Fixed the -q for the link command-line.

parent 0ceb77dc
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ CFLAGS += -D_THREAD_SAFE
LFLAGS := -pthread
else # Linux / Other UNIX
ifdef bcc
LFLAGS := -q libpthread.a
LFLAGS := libpthread.a
else
LFLAGS := -lpthread
endif
......@@ -75,5 +75,5 @@ $(ODIR):
# Executable Build Rule
$(WRAPTEST): $(ODIR)/wraptest.o $(OBJS)
@echo Linking $@
@$(CC) -o $@ $(LFLAGS) $^
@$(CC) $(CFLAGS) -o $@ $(LFLAGS) $^
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment