Skip to content
Snippets Groups Projects
Commit 0ceb77dc authored by rswindell's avatar rswindell
Browse files

Added -q (quiet mode) for bc++ command-lines.

parent ec24c477
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
DEBUG = 1 # Comment out for release (non-debug) version
ifdef bcc
CC = bc++
CFLAGS = -w -D__unix__
CFLAGS = -q -w -D__unix__
else
CC = gcc
CFLAGS = -Wall -O
......@@ -42,7 +42,7 @@ CFLAGS += -D_THREAD_SAFE
LFLAGS := -pthread
else # Linux / Other UNIX
ifdef bcc
LFLAGS := libpthread.a
LFLAGS := -q libpthread.a
else
LFLAGS := -lpthread
endif
......
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