Skip to content

Commit

Permalink
Merge pull request #12 from jeroen/main
Browse files Browse the repository at this point in the history
Make CXX17 the default
  • Loading branch information
georgestagg authored Jan 15, 2024
2 parents b239075 + cf6f773 commit e990aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/webr-vars.mk
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ CXX14 = em++
CXX17 = em++
CXX20 = em++
CC = emcc
CXX = em++
CXX = em++ -std=gnu++17
FC = $(EMFC)

CFLAGS = $(WASM_CFLAGS)
CPPFLAGS = $(WASM_CPPFLAGS)
CXXFLAGS = -std=gnu++11 $(WASM_CXXFLAGS)
CXXFLAGS = $(WASM_CXXFLAGS)
CXX98FLAGS = -std=gnu++98 $(WASM_CXXFLAGS)
CXX11FLAGS = -std=gnu++11 $(WASM_CXXFLAGS)
CXX14FLAGS = -std=gnu++14 $(WASM_CXXFLAGS)
Expand Down

0 comments on commit e990aa1

Please sign in to comment.