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:
Benjamin Loison 2023-01-02 18:23:30 +01:00
parent 36f1fb9e83
commit c50a82df1b
Signed by: Benjamin_Loison
SSH Key Fingerprint: SHA256:BtnEgYTlHdOg1u+RmYcDE0mnfz1rhv5dSbQ2gyxW8B8
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -1,5 +1,6 @@
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <sstream>
#include <set> #include <set>
#include <sys/stat.h> #include <sys/stat.h>
#include <curl/curl.h> #include <curl/curl.h>