Use system default compiler. At least there is no difference under Linux.

OpenBSD's gcc is old (4.2) so we have to use clang-6.0.0 compiler.
This commit is contained in:
SASANO Takayoshi 2019-03-21 15:49:01 +09:00
parent f643fc512a
commit 68cfe5bbe3
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
CC=g++
CC=c++
CFLAGS=-c -std=c++11 -pthread
LDFLAGS=-std=c++11 -pthread
SOURCES=$(wildcard *.cpp)

View file

@ -1,4 +1,4 @@
CC=g++
CC=c++
CFLAGS=-c -std=c++11 -pthread
LDFLAGS=-std=c++11 -pthread
SOURCES=$(wildcard *.cpp)

View file

@ -1,4 +1,4 @@
CC=g++
CC=c++
CFLAGS=-c -std=c++11 -pthread
LDFLAGS=-std=c++11 -pthread
SOURCES=$(wildcard *.cpp)