Updated makefile to cross-compile and updated github workflow to install tools

This commit is contained in:
akuker
2020-08-27 23:16:23 -05:00
parent 7ca21414f3
commit 2338b9b791
2 changed files with 7 additions and 8 deletions

View File

@@ -1,7 +1,10 @@
.DEFAULT_GOAL: all
CC = gcc
CXX = g++
ARCH ?= arm
CROSS_COMPILE ?= arm-linux-gnueabihf-
CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)g++
DEBUG ?= 0
ifeq ($(DEBUG), 1)