diff options
author | chriseth <c@ethdev.com> | 2015-10-16 15:59:22 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-10-16 15:59:22 +0800 |
commit | 2ea5b2431fc360904f193f61d974acf24fff1326 (patch) | |
tree | f8f639595675f39426031779cc127927c02f2b70 | |
parent | 984ab6ab2da4566f627a274adb132154f252ca71 (diff) | |
parent | 370b6db3aef549b10c156098cb4bfb8238da7f18 (diff) | |
download | dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.tar dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.tar.gz dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.tar.bz2 dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.tar.lz dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.tar.xz dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.tar.zst dexon-solidity-2ea5b2431fc360904f193f61d974acf24fff1326.zip |
Merge pull request #139 from chriseth/multiJson
Do not forget to export the new symbol.
-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 40ab0e21..7dd24627 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\"]'") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s EXPORTED_FUNCTIONS='[\"_compileJSON\",\"_version\",\"_compileJSONMulti\"]'") add_executable(soljson jsonCompiler.cpp ${HEADERS}) eth_use(soljson REQUIRED Solidity) else() |