ref: 0a3c812dac9a16a22940d21aa4437d964fe3f06b
parent: 445c58683235515384ed1ebc3757209b4077b0b2
author: Daniel Hooper <44912292+daniel214@users.noreply.github.com>
date: Sun Feb 27 14:11:25 EST 2022
Remove processor-specific compilation
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
#Set any compiler flags you want to use (e.g. -I/usr/include/somefolder `pkg-config --cflags gtk+-3.0` ), or leave blank
-CFLAGS = $(shell pkg-config --cflags sdl2 libserialport) -mcpu=apple-m1 -Wall -O2 -pipe -I.
+CFLAGS = $(shell pkg-config --cflags sdl2 libserialport) -Wall -O2 -pipe -I.
#Set the compiler you are using ( gcc for C or g++ for C++ )
CC = gcc
--
⑨