Skip to content
Snippets Groups Projects
Commit 26db5337 authored by paoletti's avatar paoletti
Browse files

Changed compile flag from -std=c++17 to -std=c++1z for Mac users; still works...

Changed compile flag from -std=c++17 to -std=c++1z for Mac users; still works on CAEN and autograder.
parent e46a771e
No related branches found
No related tags found
No related merge requests found
......@@ -52,8 +52,8 @@ PROJECTFILE = $(or $(wildcard project*.cpp), nomain.cpp)
PARTIAL_SUBMITFILE = partialsubmit.tar.gz
FULL_SUBMITFILE = fullsubmit.tar.gz
#Default Flags
CXXFLAGS = -std=c++17 -Wconversion -Wall -Werror -Wextra -pedantic
#Default Flags (would prefer -std=c++17 but Mac/Xcode/Clang doesn't support)
CXXFLAGS = -std=c++1z -Wconversion -Wall -Werror -Wextra -pedantic
# make release - will compile "all" with $(CXXFLAGS) and the -O3 flag
# also defines NDEBUG so that asserts will not check
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment