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-13 20:33:02 +09:00
parent 4e910ef970
commit 7cf1e602e6

View file

@ -1,7 +1,7 @@
# This makefile is for all platforms, but doesn't include support for the HD44780, OLED, or PCF8574 displays on the Raspberry Pi.
CC = gcc
CXX = g++
CC = cc
CXX = c++
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
LIBS = -lpthread
LDFLAGS = -g