mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 23:50:56 -08:00
Support for building shared libraries on Cygwin
This commit is contained in:
parent
a43ccfe457
commit
e86a9c3ea6
2 changed files with 7 additions and 7 deletions
6
src/aclocal.m4
vendored
6
src/aclocal.m4
vendored
|
|
@ -214,10 +214,10 @@ case "${host_os}" in
|
|||
;;
|
||||
cygwin*)
|
||||
thehost='cygwin'
|
||||
shared='no'
|
||||
shared='yes'
|
||||
THREAD_OBJ=''
|
||||
SHARED_LDFLAGS=''
|
||||
BUNDLE_LDFLAGS=''
|
||||
SHARED_LDFLAGS="-shared ${LDFLAGS}"
|
||||
BUNDLE_LDFLAGS="-shared ${LDFLAGS}"
|
||||
SHAREDPREFIX=''
|
||||
SHAREDEXT='dll'
|
||||
;;
|
||||
|
|
|
|||
8
src/configure
vendored
8
src/configure
vendored
|
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision.
|
||||
# From configure.in Revision: 1.99 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for ecl 0.9e.
|
||||
#
|
||||
|
|
@ -3472,10 +3472,10 @@ case "${host_os}" in
|
|||
;;
|
||||
cygwin*)
|
||||
thehost='cygwin'
|
||||
shared='no'
|
||||
shared='yes'
|
||||
THREAD_OBJ=''
|
||||
SHARED_LDFLAGS=''
|
||||
BUNDLE_LDFLAGS=''
|
||||
SHARED_LDFLAGS="-shared ${LDFLAGS}"
|
||||
BUNDLE_LDFLAGS="-shared ${LDFLAGS}"
|
||||
SHAREDPREFIX=''
|
||||
SHAREDEXT='dll'
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue