Skip to content
Snippets Groups Projects
Commit 7c35bc4c authored by deuce's avatar deuce
Browse files

Use -Xlinker instead of -Wl (OpenBSD doesn't seem to like it)

parent 1b767899
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,11 @@ vpath %.cpp $(UIFC)
LFLAGS += -L./$(LIBODIR)
SBBSLDFLAGS := $(LFLAGS) -rpath-link ./$(LIBODIR) -rpath ./
LFLAGS += -Wl,-rpath-link,./$(LIBODIR),-rpath,./
#LFLAGS += -Wl,-rpath-link,./$(LIBODIR),-rpath,./
LFLAGS += -Xlinker -rpath-link
LFLAGS += -Xlinker ./$(LIBODIR)
LFLAGS += -Xlinker -rpath
LFLAGS += -Xlinker .
ifeq ($(os),freebsd)
LFLAGS += -pthread
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