From 98db06c331eb237e2da18f510efa6ac6870ec5f2 Mon Sep 17 00:00:00 2001 From: SASANO Takayoshi Date: Wed, 3 Nov 2021 04:39:53 +0900 Subject: [PATCH] use system default compiler (c++) instead of gcc --- src/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makefile b/src/makefile index 2d7b587..bbf7a7c 100644 --- a/src/makefile +++ b/src/makefile @@ -1,4 +1,4 @@ -CC=g++ +CC=c++ CFLAGS=-c -std=c++11 -pthread LDFLAGS=-std=c++11 -pthread SOURCES=$(wildcard *.cpp)