Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
paperdave committed Apr 13, 2024
1 parent 82e3894 commit cbd5103
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,6 @@ else()
-fvisibility=hidden
-fvisibility-inlines-hidden
-fno-rtti
-fno-omit-frame-pointer
)
string(APPEND CMAKE_CXX_FLAGS " -std=c++2a")
endif()
Expand Down
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ pub fn build_(b: *Build) !void {
obj.linkLibC();
obj.dll_export_fns = true;
obj.strip = false;
obj.omit_frame_pointer = optimize != .Debug;
obj.omit_frame_pointer = false;
obj.subsystem = .Console;

// Disable stack probing on x86 so we don't need to include compiler_rt
Expand Down

0 comments on commit cbd5103

Please sign in to comment.