Skip to content

Commit

Permalink
Fixed unused shared libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoHood committed Feb 22, 2018
1 parent 052db34 commit 04379f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion swig/Python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ else
CXX := g++
PYINC := $(shell python-config --cflags)
PYLIBS := $(shell python-config --ldflags)
SWIGFLAGS := -shared
SWIGFLAGS := -Wl,-O1,--as-needed
CXXFLAGS += -std=c++0x
# Make sure you have Atlas installed. You can statically link Atlas if you
# would like to be able to move the library to a machine without Atlas.
Expand Down
2 changes: 1 addition & 1 deletion swig/Python3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ else
CXX := g++
PYINC := $(shell python3-config --cflags)
PYLIBS := $(shell python3-config --ldflags)
SWIGFLAGS := -shared
SWIGFLAGS := -Wl,-O1,--as-needed
CXXFLAGS += -std=c++0x
# Make sure you have Atlas installed. You can statically link Atlas if you
# would like to be able to move the library to a machine without Atlas.
Expand Down

0 comments on commit 04379f9

Please sign in to comment.