diff options
author | chriseth <c@ethdev.com> | 2016-01-26 23:25:36 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-01-27 06:25:07 +0800 |
commit | ebc1dce073162590fc384e2e851338be89e62cad (patch) | |
tree | c9ca803b75ec67d7f775e97dea3c40f56e8afdb7 /solc/CMakeLists.txt | |
parent | 9b9d10b4a824e794a0775021ed6c7349e41cada3 (diff) | |
download | dexon-solidity-ebc1dce073162590fc384e2e851338be89e62cad.tar.gz dexon-solidity-ebc1dce073162590fc384e2e851338be89e62cad.tar.zst dexon-solidity-ebc1dce073162590fc384e2e851338be89e62cad.zip |
Read files via callback.
Diffstat (limited to 'solc/CMakeLists.txt')
-rw-r--r-- | solc/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CMakeLists.txt b/solc/CMakeLists.txt index 4c26b416..9a914af8 100644 --- a/solc/CMakeLists.txt +++ b/solc/CMakeLists.txt @@ -18,7 +18,7 @@ else() endif() if (EMSCRIPTEN) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s EXPORTED_FUNCTIONS='[\"_compileJSON\",\"_version\",\"_compileJSONMulti\"]'") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s EXPORTED_FUNCTIONS='[\"_compileJSON\",\"_version\",\"_compileJSONMulti\",\"_compileJSONCallback\"]' -s RESERVED_FUNCTION_POINTERS=20") add_executable(soljson jsonCompiler.cpp ${HEADERS}) eth_use(soljson REQUIRED Solidity::solidity) else() |