Skip to content

Commit 9dbdcc3

Browse files
committed
Debug with cmake --trace-expand
1 parent 1a170f9 commit 9dbdcc3

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ jobs:
589589
../
590590
fi
591591
592-
emmake make -j ${{ env.ncpus }} install
592+
emmake ctest --trace-expand
593593
594594
cd ..
595595

lib/Interpreter/CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ if(EMSCRIPTEN)
22
set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE)
33
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-s SIDE_MODULE=1")
44
set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "-s SIDE_MODULE=1")
5-
set(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "")
6-
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "")
7-
set(CMAKE_SHARED_LINKER_FLAGS "")
85
set(CMAKE_STRIP FALSE)
96

107
add_llvm_library(clangCppInterOp
@@ -20,9 +17,6 @@ if(EMSCRIPTEN)
2017
LINK_LIBS
2118
clangInterpreter
2219
)
23-
set_target_properties(clangCppInterOp
24-
PROPERTIES NO_SONAME 1
25-
)
2620
target_link_options(clangCppInterOp PRIVATE
2721
PUBLIC "SHELL: -s WASM_BIGINT"
2822
)

0 commit comments

Comments
 (0)