mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 14:20:50 +00:00
Set SHARED_LIBEXT to .dll.a on Mingw, fixing make debug=yes on Mingw
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@20944 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4ebdabcc36
commit
5d3d758bb8
1 changed files with 8 additions and 0 deletions
|
@ -880,6 +880,14 @@ AFTER_INSTALL_SHARED_LIB_CHOWN =
|
|||
|
||||
BUILD_DLL = yes
|
||||
LIBEXT = .a
|
||||
# Technically, in this Unix-inspired building system, a DLL is
|
||||
# composed of a .dll file which goes in the executable path and is the
|
||||
# one which is loaded at runtime, and a .dll.a file which goes in the
|
||||
# library path and which is linked into the application in order to
|
||||
# enable it use the .dll. Anything in gnustep-make which is looking
|
||||
# for shared libs should detect / look for the .dll.a as that's what
|
||||
# we link applications against.
|
||||
SHARED_LIBEXT = .dll.a
|
||||
DLL_LIBEXT = .dll
|
||||
#SHARED_CFLAGS +=
|
||||
|
||||
|
|
Loading…
Reference in a new issue