Browse Source

Update compile.mk to C++17

pull/1941/head
Steve Russell GitHub 3 months ago
parent
commit
49a5acdeb7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      compile.mk

+ 1
- 1
compile.mk View File

@@ -18,7 +18,7 @@ FLAGS += -O3 -funsafe-math-optimizations -fno-omit-frame-pointer
# Warnings # Warnings
FLAGS += -Wall -Wextra -Wno-unused-parameter FLAGS += -Wall -Wextra -Wno-unused-parameter
# C++ standard # C++ standard
CXXFLAGS += -std=c++11
CXXFLAGS += -std=c++17


# Define compiler/linker target if cross-compiling # Define compiler/linker target if cross-compiling
ifdef CROSS_COMPILE ifdef CROSS_COMPILE


Loading…
Cancel
Save