-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add emscripten automated tests #483
Changes from all commits
1a597b9
906de42
2484e20
444c081
1e124e4
0e2d5cc
be0c5cd
0c80777
b77ac02
2cdf83f
a12e15b
85313c8
b6cadd3
57ab2c0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,7 @@ | ||
if(EMSCRIPTEN) | ||
set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE) | ||
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-s SIDE_MODULE=1") | ||
set(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "-s SIDE_MODULE=1") | ||
set(CMAKE_STRIP FALSE) | ||
|
||
add_llvm_library(clangCppInterOp | ||
SHARED | ||
|
||
CppInterOp.cpp | ||
CXCppInterOp.cpp | ||
DynamicLibraryManager.cpp | ||
DynamicLibraryManagerSymbol.cpp | ||
Paths.cpp | ||
|
||
# Additional libraries from Clang and LLD | ||
LINK_LIBS | ||
clangInterpreter | ||
) | ||
#FIXME: Setting no_soname=1 is needed until https://github.com/emscripten-core/emscripten/blob/ac676d5e437525d15df5fd46bc2c208ec6d376a3/cmake/Modules/Platform/Emscripten.cmake#L36 | ||
# is patched out of emsdk, as --soname is not recognised by emscripten. A PR to do this has been done here https://github.com/emscripten-core/emscripten/pull/23453 | ||
#FIXME: A patch is needed to llvm to remove -Wl,-z,defs since it is now recognised on emscripten. What needs to be removed is here | ||
# https://github.com/llvm/llvm-project/blob/128e2e446e90c3b1827cfc7d4d19e3c0976beff3/llvm/cmake/modules/HandleLLVMOptions.cmake#L318 . The PR to do try to do this is here | ||
# https://github.com/llvm/llvm-project/pull/123396 | ||
set_target_properties(clangCppInterOp | ||
PROPERTIES NO_SONAME 1 | ||
) | ||
target_link_options(clangCppInterOp PRIVATE | ||
PUBLIC "SHELL: -s WASM_BIGINT" | ||
) | ||
mcbarton marked this conversation as resolved.
Show resolved
Hide resolved
|
||
set(LLVM_LINK_COMPONENTS "") | ||
else() | ||
set(LLVM_LINK_COMPONENTS | ||
${LLVM_TARGETS_TO_BUILD} | ||
|
@@ -44,7 +18,7 @@ else() | |
if ("LLVMOrcDebugging" IN_LIST LLVM_AVAILABLE_LIBS) | ||
list(APPEND LLVM_LINK_COMPONENTS OrcDebugging) | ||
endif() | ||
mcbarton marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
endif() | ||
set(DLM | ||
DynamicLibraryManager.cpp | ||
DynamicLibraryManagerSymbol.cpp | ||
|
@@ -65,6 +39,11 @@ else() | |
set(cling_clang_interp clangInterpreter) | ||
endif() | ||
|
||
if(EMSCRIPTEN) | ||
set(link_libs | ||
${cling_clang_interp} | ||
) | ||
else() | ||
set(link_libs | ||
${cling_clang_interp} | ||
clangAST | ||
|
@@ -73,8 +52,9 @@ else() | |
clangLex | ||
clangSema | ||
) | ||
endif() | ||
|
||
if(NOT WIN32) | ||
if(NOT WIN32 AND NOT EMSCRIPTEN) | ||
list(APPEND link_libs dl) | ||
mcbarton marked this conversation as resolved.
Show resolved
Hide resolved
|
||
endif() | ||
|
||
|
@@ -124,7 +104,6 @@ else() | |
clangStaticAnalyzerCore | ||
) | ||
endif(LLVM_LINK_LLVM_DYLIB) | ||
|
||
add_llvm_library(clangCppInterOp | ||
DISABLE_LLVM_LINK_LLVM_DYLIB | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure what role this plays for plays for the emscripten build. I remember as we were forcing a shared build ... we were using
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you elaborate more on what change you want I may be willing to implement, but being honest I couldn't work out what you was suggesting from your comment. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just wanted to make sure |
||
CppInterOp.cpp | ||
|
@@ -134,9 +113,37 @@ else() | |
${link_libs} | ||
) | ||
|
||
target_compile_definitions(clangCppInterOp PUBLIC "_CINDEX_LIB_") # workaround for the use of `CINDEX_LINKAGE` | ||
|
||
if(EMSCRIPTEN) | ||
# FIXME: When dynamically linking the Emscripten shared library to the | ||
# unit tests main_module you get errors due to undefined symbols. The reading of the file | ||
# below into a SYMBOLS_LIST variable is a temporary workaround that exports the undefined | ||
# symbols from the shared library, until it can be determined why they are not being exported already. | ||
file(READ "${CMAKE_SOURCE_DIR}/lib/Interpreter/exports.ld" SYMBOLS_LIST) | ||
|
||
# Replace newlines with spaces | ||
string(REPLACE "\n" " " SYMBOLS_LIST "${SYMBOLS_LIST}") | ||
|
||
#FIXME: Setting no_soname=1 is needed until https://github.com/emscripten-core/emscripten/blob/ac676d5e437525d15df5fd46bc2c208ec6d376a3/cmake/Modules/Platform/Emscripten.cmake#L36 | ||
# is patched out of emsdk, as --soname is not recognised by emscripten. A PR to do this has been done here https://github.com/emscripten-core/emscripten/pull/23453 | ||
#FIXME: A patch is needed to llvm to remove -Wl,-z,defs since it is now recognised on emscripten. What needs to be removed is here | ||
# https://github.com/llvm/llvm-project/blob/128e2e446e90c3b1827cfc7d4d19e3c0976beff3/llvm/cmake/modules/HandleLLVMOptions.cmake#L318 . The PR to do try to do this is here | ||
# https://github.com/llvm/llvm-project/pull/123396 | ||
set_target_properties(clangCppInterOp PROPERTIES | ||
NO_SONAME 1 | ||
LINK_FLAGS "-s WASM_BIGINT -s SIDE_MODULE=1 ${SYMBOLS_LIST}" | ||
anutosh491 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
) | ||
if (CPPINTEROP_ENABLE_TESTING) | ||
# When compiling Emscripten tests the shared library it links to is expected to be in the same folder as the compiled Javascript | ||
add_custom_command(TARGET clangCppInterOp POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:clangCppInterOp> ${CMAKE_BINARY_DIR}/unittests/CppInterOp/ | ||
) | ||
endif(CPPINTEROP_ENABLE_TESTING) | ||
|
||
endif() | ||
|
||
target_compile_definitions(clangCppInterOp PUBLIC "_CINDEX_LIB_") # workaround for the use of `CINDEX_LINKAGE` | ||
|
||
string(REPLACE ";" "\;" _VER CPPINTEROP_VERSION) | ||
set_source_files_properties(CppInterOp.cpp PROPERTIES COMPILE_DEFINITIONS | ||
"LLVM_BINARY_DIR=\"${LLVM_BINARY_DIR}\";CPPINTEROP_VERSION=\"${_VAR}\"" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Among both of these I see that the pedantic flag is whats different between both the "set...." options we have
I don't think pedantic has a huge role here but do you have any specific reason to remove it ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason for removing it is because it is passed through to the emscripten build of gtest, creating a warning, and as we treat all warnings as errors, then the gtest build errors out. Same reason it was remove during the apple build.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay if that's the case I am not sure of this change.
This is the global cmake file and making changes here affect not just the build for unittests but also the library.
I see the following CXX_FLAGS are being passed after your change while building
libclangCppInterOp.so
And this doesn't have
pedantic
which it used to have originally.I haven't gotten to the gtest thing yet. My first aim is to ensure the library that we were building already is built without any unncessary changes.
So yeah this might have to play a role for gtest (but if that's the case you try supressing it there to avoid duplication) . Supressing it here changes the cxx_flags for the lib
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vgvassilev On this point I don't agree. This change is necessary. This fix is what we settled on when we encountered the same issue upgrading to the latest gtest for MacOS builds. No idea why its acceptable in the case of native builds, but no Emscripten builds.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this was discussed before. Don't have enough context.
Neither do I think pedantic is a game changer here ! But commenting as a reviewer is tough unless I don't know of the error (looks just randomly removed to me)
Maybe paste the error here ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we get more context on the error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@anutosh491 @vgvassilev Here is what happens if you keep the pedantic flag ttps://github.com/compiler-research/CppInterOp/actions/runs/13412927760/job/37466965423?pr=483#step:9:250 .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay. In that case can we limit flag just for gtest?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the initial approach I took in the gtest PR (here #344 (comment)), but we ended up at the solution we have here (I think to still have consistency between the flags applied to gtest and CppInterOp, but cannot be certain).