Make compatible with Debian

More precise ly make compatible with `gcc version 10.2.1 20210110 (Debian 10.2.1-6)`
This commit is contained in:
2023-01-02 18:23:30 +01:00
parent 36f1fb9e83
commit c50a82df1b
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: main
main:
g++ main.cpp -g -lcurl -o main
g++ main.cpp -g -std=c++17 -lcurl -o main