libopenglrecorder: remove -O3

This commit is contained in:
Đoàn Trần Công Danh 2021-03-27 13:52:50 +07:00
parent 7ff3ebc8be
commit 44eb48ca16

View file

@ -0,0 +1,13 @@
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -21,7 +21,7 @@ if (UNIX OR MINGW)
if (CMAKE_BUILD_TYPE MATCHES Debug)
add_definitions(-std=gnu++0x -O0)
else()
- add_definitions(-std=gnu++0x -O3)
+ add_definitions(-std=gnu++0x)
endif()
endif()