https://bugzilla.rpmfusion.org/show_bug.cgi?id=2455
--- Comment #16 from Richard <hobbes1069(a)gmail.com> 2012-09-09 22:52:42 CEST ---
If you look at the generated CMakeCache.txt file (after running cmake) you'll
find the following:
//Flags used by the compiler during Release with Debug Info builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g
This is what you want (and also uses -O2 which is also what you want).
If you choose 'Release' you get:
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
Which uses -O3 (bad) and does not produce debuginfo (-DNDEBUG).
--
Configure bugmail:
https://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
You are the assignee for the bug.