diff options
author | midipix <writeonce@midipix.org> | 2018-11-25 06:07:28 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-25 09:17:31 -0500 |
commit | 7d2b479565716a537182caa183c4e2e1377c4e2b (patch) | |
tree | 625f4ac40c4da5f373293b9976b8b3c30a7e08b6 | |
parent | c2f41fca5e3577a0176af2273959e62b9433a2a1 (diff) | |
download | bcparser-7d2b479565716a537182caa183c4e2e1377c4e2b.tar.bz2 bcparser-7d2b479565716a537182caa183c4e2e1377c4e2b.tar.xz |
build system: only apply LDFLAGS_IMPLIB to the package's primary shared lib.
-rw-r--r-- | Makefile.in | 1 | ||||
-rw-r--r-- | sysinfo/os/pe.mk | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index ad393f7..76d0133 100644 --- a/Makefile.in +++ b/Makefile.in @@ -218,6 +218,7 @@ app-objs: dirs $(APP_OBJS) $(SHARED_LIB): $(SHARED_OBJS) +$(SHARED_LIB): LDFLAGS_SHARED += $(LDFLAGS_IMPLIB) $(STATIC_LIB): $(STATIC_OBJS) diff --git a/sysinfo/os/pe.mk b/sysinfo/os/pe.mk index c3c5ba0..6f9e8ef 100644 --- a/sysinfo/os/pe.mk +++ b/sysinfo/os/pe.mk @@ -4,7 +4,6 @@ DSO_REF_SOLINK = $(IMPLIB_SOLINK) LDFLAGS_IMPLIB += -Wl,--output-def LDFLAGS_IMPLIB += -Wl,$(IMPLIB_DEF) -LDFLAGS_SHARED += $(LDFLAGS_IMPLIB) LDFLAGS_SONAME += -Wl,-soname LDFLAGS_SONAME += -Wl,$(DSO_SONAME) |