use system default compiler

replaced gcc/g++ with cc/c++ to support Clang-based system (e.g. OpenBSD).
This commit is contained in:
SASANO Takayoshi
2019-10-23 05:48:04 +09:00
parent 82f1053d9d
commit 47bc9c5bcd

View File

@@ -1,5 +1,5 @@
CC = gcc
CXX = g++
CC = cc
CXX = c++
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
LIBS = -lpthread
LDFLAGS = -g