diff options
author | Tony Theodore <tonyt@logyst.com> | 2019-03-02 03:16:03 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2019-03-02 03:16:03 (GMT) |
commit | 258d2cfbfc3ecfd1801a59a0698690ab7b4e78a9 (patch) | |
tree | f8d597a1ca550fc9ed0bb87e1c212ae1281969cd | |
parent | 7e3678193ad88d07f1a0d5d87f74274b54c424b4 (diff) | |
download | mxe-258d2cfbfc3ecfd1801a59a0698690ab7b4e78a9.zip mxe-258d2cfbfc3ecfd1801a59a0698690ab7b4e78a9.tar.gz mxe-258d2cfbfc3ecfd1801a59a0698690ab7b4e78a9.tar.bz2 |
luajit: darwin no longer supports multi-lib
-rw-r--r-- | src/luajit.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/luajit.mk b/src/luajit.mk index c907a98..94b120b 100644 --- a/src/luajit.mk +++ b/src/luajit.mk @@ -36,4 +36,9 @@ ifeq (,$(findstring 64,$(BUILD))) $(PKG)_BUILD_x86_64-w64-mingw32 = endif +# darwin no longer supports multi-lib +ifeq ($(findstring x86_64-apple-darwin,$(BUILD)),x86_64-apple-darwin) + $(PKG)_BUILD_i686-w64-mingw32 = +endif + $(PKG)_BUILD_SHARED = |