diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-09-30 09:31:12 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-09-30 11:17:01 -0400 |
commit | e515c7f37be97e1c2ccc497ddd0a730e63ddfa82 (patch) | |
tree | d82dba4c3ed74d41a00499109e95d9bf8bea12a7 /libffi | |
parent | c15c4272018f22c9576e11342464d86782934e54 (diff) | |
download | haskell-e515c7f37be97e1c2ccc497ddd0a730e63ddfa82.tar.gz |
Allow libffi snapshots
This is rather annoying. I'd prefer to have a stable release to
use. However libffi-3.2.1 has been released November 12, 2014, and
libffi-4 is TBD. See also https://github.com/libffi/libffi/issues/296
The core reason for this change is that llvm changed the supported
assembly to unified syntax, which libffi-3.2.1 does not use, and hence
fails to compile for arm with llvm. For refence, see the following
issue: https://github.com/libffi/libffi/issues/191.
This diff contains a script to generate a tarball for the
`libffi-tarballs` repository from the libffi GitHub repository; as well
as the necessary changes to the build system.
Updates libffi-tarballs submodule.
Reviewers: austin, bgamari, hvr
Subscribers: hvr, erikd, rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3574
Diffstat (limited to 'libffi')
-rw-r--r-- | libffi/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libffi/ghc.mk b/libffi/ghc.mk index 7c5bc9e1b3..691eda74ee 100644 --- a/libffi/ghc.mk +++ b/libffi/ghc.mk @@ -123,7 +123,7 @@ $(libffi_STATIC_LIB): $(libffi_STAMP_INSTALL) @test -f $@ || { echo "$< exists, but $@ does not."; echo "Suggest removing $<."; exit 1; } $(libffi_HEADERS): $(libffi_STAMP_INSTALL) | $$(dir $$@)/. - cp -f libffi/build/inst/lib/libffi-*/include/$(notdir $@) $@ + cp -f libffi/build/inst/include/$(notdir $@) $@ $(eval $(call clean-target,libffi,, \ libffi/build $(wildcard libffi/stamp.ffi.*) libffi/dist-install)) |