summaryrefslogtreecommitdiffstats
path: root/src/devil.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2020-08-13 09:24:01 (GMT)
committerMark Brand <mabrand@mabrand.nl>2020-08-13 09:26:15 (GMT)
commit05ee72f21feb19bf4c443299f75096b09ed718fa (patch)
tree080ce2984fdcf9879d1321c7b3ad996f33660b30 /src/devil.mk
parent91e65d7a16bfbf3a1f32f9b016600195d2c5824d (diff)
downloadmxe-05ee72f21feb19bf4c443299f75096b09ed718fa.zip
mxe-05ee72f21feb19bf4c443299f75096b09ed718fa.tar.gz
mxe-05ee72f21feb19bf4c443299f75096b09ed718fa.tar.bz2
devil: work around type mismatch
https://github.com/mxe/mxe/issues/2547
Diffstat (limited to 'src/devil.mk')
-rw-r--r--src/devil.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devil.mk b/src/devil.mk
index a3a03b7..ce452dc 100644
--- a/src/devil.mk
+++ b/src/devil.mk
@@ -14,7 +14,7 @@ define $(PKG)_BUILD
$(SED) -i 's,resources\\\\,./resources/,' '$(SOURCE_DIR)/DevIL/src-IL/msvc/IL.rc'
cd '$(BUILD_DIR)' && $(TARGET)-cmake '$(SOURCE_DIR)/DevIL' \
-DIL_TESTS=OFF \
- -DCMAKE_CXX_FLAGS="-D__STDC_LIMIT_MACROS"
+ -DCMAKE_CXX_FLAGS="-D__STDC_LIMIT_MACROS -fpermissive"
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
endef