aboutsummaryrefslogtreecommitdiff
path: root/libffi/Makefile.am
diff options
context:
space:
mode:
authorJon Beniston <jon@beniston.com>2001-03-27 02:39:16 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2001-03-27 03:39:16 +0100
commitd6c4152ac040f2ce8ab21de72e00a3c880071307 (patch)
tree624b17833a8b4f15408d3ebc9f14aa3c486b8dad /libffi/Makefile.am
parentb850de4faa9430a721ffeee7aacd968c2b1befad (diff)
downloadgcc-d6c4152ac040f2ce8ab21de72e00a3c880071307.zip
gcc-d6c4152ac040f2ce8ab21de72e00a3c880071307.tar.gz
gcc-d6c4152ac040f2ce8ab21de72e00a3c880071307.tar.bz2
configure.in: Added X86_WIN32 target (Win32, CygWin, MingW).
2001-03-27 Jon Beniston <jon@beniston.com> * configure.in: Added X86_WIN32 target (Win32, CygWin, MingW). * configure: Rebuilt. * Makefile.am: Added X86_WIN32 target support. * Makefile.in: Rebuilt. * include/ffi.h.in: Added X86_WIN32 target support. * src/ffitest.c: Doesn't run structure tests for X86_WIN32 targets. * src/types.c: Added X86_WIN32 target support. * src/x86/win32.S: New file. Based on sysv.S, but with EH stuff removed and made to work with CygWin's gas. From-SVN: r40860
Diffstat (limited to 'libffi/Makefile.am')
-rw-r--r--libffi/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/libffi/Makefile.am b/libffi/Makefile.am
index bcb94df..b96cb35 100644
--- a/libffi/Makefile.am
+++ b/libffi/Makefile.am
@@ -7,7 +7,7 @@ SUBDIRS = include
EXTRA_DIST = LICENSE ChangeLog.v1 src/mips/ffi.c src/mips/n32.S \
src/mips/n32.s src/mips/o32.S src/mips/o32.s \
src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S \
- src/x86/ffi.c src/x86/sysv.S \
+ src/x86/ffi.c src/x86/sysv.S src/x86/win32.S \
src/alpha/ffi.c src/alpha/osf.S \
src/m68k/ffi.c src/m68k/sysv.S \
src/powerpc/ffi.c src/powerpc/sysv.S \
@@ -90,6 +90,7 @@ ffitest_LDFLAGS = -shared-libgcc
TARGET_SRC_MIPS_GCC = src/mips/ffi.c src/mips/o32.S src/mips/n32.S
TARGET_SRC_MIPS_SGI = src/mips/ffi.c src/mips/o32.s src/mips/n32.s
TARGET_SRC_X86 = src/x86/ffi.c src/x86/sysv.S
+TARGET_SRC_X86_WIN32 = src/x86/ffi.c src/x86/win32.S
TARGET_SRC_SPARC = src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S
TARGET_SRC_ALPHA = src/alpha/ffi.c src/alpha/osf.S
TARGET_SRC_IA64 = src/ia64/ffi.c src/ia64/unix.S
@@ -110,6 +111,9 @@ endif
if X86
libffi_la_SOURCES = $(libffi_la_common_SOURCES) $(TARGET_SRC_X86)
endif
+if X86_WIN32
+libffi_la_SOURCES = $(libffi_la_common_SOURCES) $(TARGET_SRC_X86_WIN32)
+endif
if SPARC
libffi_la_SOURCES = $(libffi_la_common_SOURCES) $(TARGET_SRC_SPARC)
endif