diff options
author | Brandon Bayer <bbayer@multitech.com> | 2015-12-14 13:20:23 -0600 |
---|---|---|
committer | Brandon Bayer <bbayer@multitech.com> | 2015-12-14 13:20:23 -0600 |
commit | 994c50e43c5a8169881a6529411cd9e92991bfd1 (patch) | |
tree | ba76530e378f9102e94ccc4a77afaed2c7e7360a /Makefile | |
parent | 087df0460e13e9fc79dcae97c4749021f87ae667 (diff) | |
download | libmts-994c50e43c5a8169881a6529411cd9e92991bfd1.tar.gz libmts-994c50e43c5a8169881a6529411cd9e92991bfd1.tar.bz2 libmts-994c50e43c5a8169881a6529411cd9e92991bfd1.zip |
fix: add LDFLAGS to Makefile for shared lib build pre-gcc/++ 4.5 compiler (MTR)0.4
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ libmts.a: $(OBJS) libmts.so.0: $(OBJS) @echo 'Building target: $@' - $(CXX) -shared -Wl,-soname,$@ -o libmts.so.$(VERSION) $(OBJS) $(LIBS) + $(CXX) $(LDFLAGS) -shared -Wl,-soname,$@ -o libmts.so.$(VERSION) $(OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' |