Defer expansion of $(pdbinpath) to correctly find pd.dll (bugfix)
The issue was introduced in version 0.3.0 from the previous commit
(41e9743).
This commit is contained in:
parent
41e9743ed5
commit
a0c87bea5e
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
# Makefile.pdlibbuilder dated 2016-10-09
|
# Makefile.pdlibbuilder dated 2016-10-13
|
||||||
version = 0.3.0
|
version = 0.3.1
|
||||||
|
|
||||||
# Helper makefile for Pure Data external libraries.
|
# Helper makefile for Pure Data external libraries.
|
||||||
# Written by Katja Vetter March-June 2015 for the public domain. No warranties.
|
# Written by Katja Vetter March-June 2015 for the public domain. No warranties.
|
||||||
|
|
@ -567,7 +567,7 @@ ifeq ($(system), Windows)
|
||||||
arch.c.flags := -march=pentium4 -msse -msse2 -mfpmath=sse
|
arch.c.flags := -march=pentium4 -msse -msse2 -mfpmath=sse
|
||||||
cpp.flags := -DMSW -DNT
|
cpp.flags := -DMSW -DNT
|
||||||
c.flags :=
|
c.flags :=
|
||||||
c.ldflags := -static-libgcc -shared \
|
c.ldflags = -static-libgcc -shared \
|
||||||
-Wl,--enable-auto-import "$(pdbinpath)/pd.dll"
|
-Wl,--enable-auto-import "$(pdbinpath)/pd.dll"
|
||||||
c.ldlibs :=
|
c.ldlibs :=
|
||||||
cxx.flags := -fcheck-new
|
cxx.flags := -fcheck-new
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue