We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b83b84a commit ce926d7Copy full SHA for ce926d7
cmake/ProjectBinaryen.cmake
@@ -44,6 +44,7 @@ ExternalProject_Add(binaryen
44
BINARY_DIR ${binary_dir}
45
URL https://github.com/WebAssembly/binaryen/archive/1.38.9.tar.gz
46
URL_HASH SHA256=f8c6d4deb83dba8709c4df9f7983080ec0f9412e88899767ed2815b911ce1ebd
47
+ PATCH_COMMAND sh ${CMAKE_CURRENT_LIST_DIR}/patch_binaryen.sh
48
CMAKE_ARGS
49
-DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>
50
-DCMAKE_BUILD_TYPE=Release
cmake/patch_binaryen.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+
3
+sed -iE 's/COMMAND python /COMMAND /' src/passes/CMakeLists.txt
0 commit comments