aboutsummaryrefslogtreecommitdiff
path: root/CMakePresets.json
diff options
context:
space:
mode:
authorDaiki Noda <sys9kdr@users.noreply.github.com>2025-01-06 04:28:31 +0900
committerGitHub <noreply@github.com>2025-01-05 11:28:31 -0800
commitac5a6d9ff56b451f5f24dfd3c46a6447375d3394 (patch)
treef81740b1f3573c7e86e940f99e2a0edca76f6b42 /CMakePresets.json
parent548f19ccc3018aa563d25cf99a9ce70a56b115fe (diff)
downloadrneovim-ac5a6d9ff56b451f5f24dfd3c46a6447375d3394.tar.gz
rneovim-ac5a6d9ff56b451f5f24dfd3c46a6447375d3394.tar.bz2
rneovim-ac5a6d9ff56b451f5f24dfd3c46a6447375d3394.zip
build: fix RelWithDebInfo optimization flags #31802
Problem: RelWithDebInfo generates redundant flags: Compilation: /usr/bin/cc -O2 -g -Og -g The `CMAKE_C_FLAGS_RELWITHDEBINFO` variable is being modified in a way that caused duplicate `-Og` and `-g` flags to be added. The resulting flags were `-O2 -g -Og -g`. - `-Og` (Optimize for debugging) and `-O2` (Optimize for performance) are different optimization levels. We can't use both at once. - The duplicate `-g` flag is redundant and no effect. multiple -O flags has no effect for code, just redundant. > If you use multiple -O options, with or without level numbers, the last such option is the one that is effective. https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html Solution: Adjust the flags to use the more appropriate `-O2 -g`. Compilation: /usr/bin/cc -O2 -g BEFORE: ``` :verbose version NVIM v0.11.0-dev-1443+ge00cd1ab40 Build type: RelWithDebInfo LuaJIT 2.1.1734355927 Compilation: /usr/bin/cc -O2 -g -Og -g -flto -fno-fat-lto-ob jects -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict ... ``` AFTER: ``` :verbose version NVIM v0.11.0-dev-e00cd1ab4-dirty Build type: RelWithDebInfo LuaJIT 2.1.1734355927 Compilation: /usr/bin/cc -O2 -g -flto -fno-fat-lto-objects - Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-protot ... ```
Diffstat (limited to 'CMakePresets.json')
-rw-r--r--CMakePresets.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakePresets.json b/CMakePresets.json
index 1d214d7801..b863d88608 100644
--- a/CMakePresets.json
+++ b/CMakePresets.json
@@ -10,7 +10,7 @@
{
"name": "default",
"displayName": "RelWithDebInfo",
- "description": "Enables optimizations (-Og or -O2) with debug information",
+ "description": "Enables optimizations (-O2) with debug information",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
},