This is the mail archive of the libffi-discuss@sourceware.org mailing list for the libffi project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: libffi 3.0.12 rc3 ready...


Am 08.02.2013 22:21, schrieb Anthony Green:
> Here's release candidate 3.  Things should be slowing down now.
> Still.. would love to get test results on Windows, MacOS, AVR32,
> Blackfin, 32-bit MIPS, AArch64, Tile*, Xtensa, Alpha Linux, etc...

built and no test failures on the Hurd, kfreebsd-{amd64,i386}, Linux armeabi
(soft and hard float), sparc, s390, i386, amd64, mips, mipsel, powerpc, ia64, x32

sh4 did build, but a build log is missing.

ppc64, s390x, sparc64: 20 test failures (the same)

for mips/mipsel, I see 35 test failures with -mabi=n32 and -m64.

alpha: 8 test failures

build logs at
https://buildd.debian.org/status/package.php?p=libffi&suite=experimental
http://buildd.debian-ports.org/status/package.php?p=libffi&suite=experimental

on all builds I see

/bin/bash: ../../libtool-ldflags: No such file or directory

fixed by:

--- libffi-3.0.12~rc3.orig/Makefile.am
+++ libffi-3.0.12~rc3/Makefile.am
@@ -209,7 +209,7 @@ endif
 libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
 nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES)

-LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
+LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/libtool-ldflags $(LDFLAGS))

 libffi_la_LDFLAGS = -no-undefined -version-info `grep -v '^\#'
$(srcdir)/libtool-version` $(LTLDFLAGS) $(AM_LTLDFLAGS)


to have it working for the standalone release and the GCC copy, maybe use
$(firstword $(wildcard $(top_srcdir)/libtool-ldflags $(LDFLAGS)
$(top_srcdir)/../libtool-ldflags $(LDFLAGS)))

  Matthias


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]