Browse Source

Increase the optimization level in the Makefile

Ian Goldberg 1 year ago
parent
commit
4ea6ac6fe0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -63,9 +63,9 @@ endif
 endif
 
 ifeq ($(SGX_DEBUG), 1)
-        SGX_COMMON_FLAGS += -O0 -g
+        SGX_COMMON_FLAGS += -O3 -g
 else
-        SGX_COMMON_FLAGS += -O2
+        SGX_COMMON_FLAGS += -O3
 endif
 
 SGX_COMMON_FLAGS += -Wall -Wextra -Winit-self -Wpointer-arith -Wreturn-type \