From 370b6db3aef549b10c156098cb4bfb8238da7f18 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 15 Oct 2015 19:18:14 +0200 Subject: Do not forget to export the new symbol. --- solc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit