We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8df0fb commit 51d1e0cCopy full SHA for 51d1e0c
chapter09/Makefile
@@ -42,10 +42,10 @@ listings: config_structure.lst phonebook.lst
42
cat -n $^ > $@
43
44
config_structure: config_structure.c
45
- $(CXX) -o config_structure config_structure.c -lpmemkv
+ $(CXX) -std=c++11 -o config_structure config_structure.c -lpmemkv
46
47
phonebook: phonebook.cpp
48
- $(CXX) -o phonebook phonebook.cpp -lpmemkv
+ $(CXX) -std=c++11 -o phonebook phonebook.cpp -lpmemkv
49
50
clean:
51
$(RM) *.o core a.out
0 commit comments