From 2e818f508e564c53e9269ba6e3048c80f71be5a0 Mon Sep 17 00:00:00 2001 From: green Date: Mon, 30 Aug 2004 15:43:03 +0000 Subject: 2004-08-30 Anthony Green * Makefile.am: Add frv support. * Makefile.in, testsuite/Makefile.in: Rebuilt. * configure.ac: Read configure.host. * configure, aclocal.m4: Rebuilt. * configure.host: New file. frv-elf needs libgloss. * include/ffi.h.in: Force ffi_closure to have a nice big (8) alignment. This is needed to frv and should harm the others. * include/ffi_common.h (ALIGN_DOWN): New macro. * src/frv/ffi.c, src/frv/ffitarget.h, src/frv/eabi.S: New files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86779 138bc75d-0d04-0410-961f-82ee72b054a4 --- libffi/configure.host | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libffi/configure.host (limited to 'libffi/configure.host') diff --git a/libffi/configure.host b/libffi/configure.host new file mode 100644 index 00000000000..f52457b39fd --- /dev/null +++ b/libffi/configure.host @@ -0,0 +1,11 @@ +# configure.host +# +# This shell script handles all host based configuration for libffi. +# + +# THIS TABLE IS SORTED. KEEP IT THAT WAY. +case "${host}" in + frv*-elf) + LDFLAGS=`echo $LDFLAGS | sed "s/\-B[^ ]*libgloss\/frv\///"`\ -B`pwd`/../libgloss/frv/ + ;; +esac -- cgit v1.2.1