Skip to content

Commit

Permalink
Fix static library linking
Browse files Browse the repository at this point in the history
Now we make the .so correctly we tried to link with it which meant the tools
didn't run by default!  Linkage now fixed to static.
  • Loading branch information
jc-kynesim committed Apr 8, 2013
1 parent 6970a9f commit 0e8463e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ TEST_OBJS = \

# Our library
STATIC_LIB = $(LIBDIR)/libtstools.a
LIBOPTS = -L$(LIBDIR) -ltstools $(ARCH_FLAGS)
LIBOPTS = $(ARCH_FLAGS) $(STATIC_LIB)

ifeq ($(shell uname -s), Darwin)
SHARED_LIB = $(LIBDIR)/libtstools.xxx
Expand Down

0 comments on commit 0e8463e

Please sign in to comment.