Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
Use -std=c++17 instead of -std=gnu++17
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Dec 15, 2020
1 parent 7a548d8 commit 3e5d3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ src/ExternalCSources/%.o: src/ExternalCSources/%.c src/ExternalCSources/*.h
$(CC) $(_CFLAGS) -std=gnu99 -c -o $@ $<

src/%.o: src/%.cpp src/*.hpp
$(CXX) $(_CFLAGS) -std=gnu++17 -c -o $@ $<
$(CXX) $(_CFLAGS) -std=c++17 -c -o $@ $<

wfb_rx: src/rx.o src/ExternalCSources/radiotap.o src/ExternalCSources/fec.o
$(CXX) -o $@ $^ $(_LDFLAGS)
Expand Down

0 comments on commit 3e5d3c3

Please sign in to comment.