X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/64d78265d0256eb00ae59b717aa97e4c5786e003..05a11043926e5770f7fa9e3512689cda3cf21349:/src/make.env.in diff --git a/src/make.env.in b/src/make.env.in index e21dc7fef2..e070a1d66c 100644 --- a/src/make.env.in +++ b/src/make.env.in @@ -10,8 +10,8 @@ ####################### GENERAL SETTINGS ############################ - -EXTRALIBS = @EXTRA_LIBS@ +# see comment near LDFLAGS at the end of file +EXTRALIBS = @LDFLAGS@ @EXTRA_LIBS@ LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRALIBS) TOOLKIT = @TOOLKIT@ @@ -65,9 +65,12 @@ SHARED_LD = @SHARED_LD@ # We *must* include CPPFLAGS in both of these, to make sure that all # header files get found. (KB) -CFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@ -CPPFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ +CFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@ +CPPFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ PICFLAGS = @PIC_FLAG@ -LDFLAGS = @LDFLAGS@ +# taking into account how SHARED_LD is defined, appending LDFLAGS to it +# doesn't work, so we put them in the end of the linker command line in +# EXTRALIBS instead (see above) +# LDFLAGS = @LDFLAGS@