Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions builds/cmake/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_C_FLAGS": "$env{CMAKE_C_FLAGS} -Og -g --coverage -fprofile-update=atomic",
"CMAKE_CXX_FLAGS": "$env{CMAKE_CXX_FLAGS} -Og -g --coverage -fprofile-update=atomic"
"CMAKE_C_FLAGS": "$env{CMAKE_C_FLAGS} -Og -g1 --coverage -fprofile-update=atomic",
"CMAKE_CXX_FLAGS": "$env{CMAKE_CXX_FLAGS} -Og -g1 --coverage -fprofile-update=atomic"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion builds/cmake/install-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ main()
msg_verbose "*** Build config specified, calculating flags..."

if [[ "${BUILD_CONFIG}" == "debug" ]]; then
BUILD_FLAGS="-Og -g"
BUILD_FLAGS="-Og -g1"
elif [[ "${BUILD_CONFIG}" == "release" ]]; then
BUILD_FLAGS="-O3"
fi
Expand Down
2 changes: 1 addition & 1 deletion builds/cmake/install-presets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ main()
msg_verbose "*** Build config specified, calculating flags..."

if [[ "${BUILD_CONFIG}" == "debug" ]]; then
BUILD_FLAGS="-Og -g"
BUILD_FLAGS="-Og -g1"
elif [[ "${BUILD_CONFIG}" == "release" ]]; then
BUILD_FLAGS="-O3"
fi
Expand Down
2 changes: 1 addition & 1 deletion builds/gnu/install-gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ main()
msg_verbose "*** Build config specified, calculating flags..."

if [[ "${BUILD_CONFIG}" == "debug" ]]; then
BUILD_FLAGS="-Og -g"
BUILD_FLAGS="-Og -g1"
elif [[ "${BUILD_CONFIG}" == "release" ]]; then
BUILD_FLAGS="-O3"
fi
Expand Down
3 changes: 3 additions & 0 deletions builds/msvc/properties/Debug.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<!-- Inline explicit-inline functions so header-inline template accessors
are not emitted out-of-line in every TU (debug .lib image size). -->
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
Expand Down
Loading