Skip to content

Commit

Permalink
CMake Stop forcing OMR_SEPARATE_DEBUG_INFO
Browse files Browse the repository at this point in the history
Setting a cache variable as internal force-overwrites its previous value.
Leaving as a normal set() means that the user is able to override it on
the command line. This is useful when making a local debug build, as
debuggers don't always play nice with the split debug info.

Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
  • Loading branch information
dnakamura committed May 27, 2020
1 parent 2ac59e9 commit 4eb40a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/cmake/omr_config.cmake
Expand Up @@ -28,5 +28,5 @@ set(OMR_DDR OFF CACHE BOOL "")
set(OMR_EXAMPLE OFF CACHE INTERNAL "")
set(OMR_FVTEST OFF CACHE INTERNAL "")
set(OMR_GC ON CACHE INTERNAL "")
set(OMR_SEPARATE_DEBUG_INFO ON CACHE INTERNAL "")
set(OMR_SEPARATE_DEBUG_INFO ON CACHE BOOL "")
set(OMRPORT_OMRSIG_SUPPORT ON CACHE INTERNAL "")

0 comments on commit 4eb40a4

Please sign in to comment.