You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The hard coded compiler flag -s prevents the creation of debug symbols regardless of the build type. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-literal-suffix -s") This is found in line 53 in the top-level CMakeLists.txt.
Expected behavior
The -s shall be removed from the flags. For the -Wno-literal-suffix a check needs to be performed if this is needed and if there are ways to configure this through CMake. Cause this might result in different behaviours when using a different cpp compiler like CLang.
The text was updated successfully, but these errors were encountered:
Describe the bug
The hard coded compiler flag
-s
prevents the creation of debug symbols regardless of the build type.set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-literal-suffix -s")
This is found in line 53 in the top-level CMakeLists.txt.Expected behavior
The
-s
shall be removed from the flags. For the-Wno-literal-suffix
a check needs to be performed if this is needed and if there are ways to configure this through CMake. Cause this might result in different behaviours when using a different cpp compiler like CLang.The text was updated successfully, but these errors were encountered: