Skip to content

Commit

Permalink
Use system default compiler. At least there is no difference under Li…
Browse files Browse the repository at this point in the history
…nux.

OpenBSD's gcc is old (4.2) so we have to use clang-6.0.0 compiler.
  • Loading branch information
jg1uaa committed Mar 13, 2019
1 parent 4e910ef commit 7cf1e60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7cf1e60

Please sign in to comment.