Skip to content

Commit

Permalink
Merge pull request #63 from myyerrol/ysyx2204
Browse files Browse the repository at this point in the history
feat: add support for c++17
  • Loading branch information
sashimi-yzh committed Apr 12, 2023
2 parents fe77a6b + 5f66cb8 commit 773a409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/spike-diff/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ BINARY = $(BUILD_DIR)/$(NAME)
SRCS = difftest.cc

$(BINARY): $(SPIKE) $(SRCS)
g++ -O2 -shared -fPIC -fvisibility=hidden $(INC_PATH) $(SRCS) $(INC_LIBS) -o $@
g++ -std=c++17 -O2 -shared -fPIC -fvisibility=hidden $(INC_PATH) $(SRCS) $(INC_LIBS) -o $@

clean:
rm -rf $(BUILD_DIR)
Expand Down

0 comments on commit 773a409

Please sign in to comment.