From 905db8f73f94ba4aa2b12df8740ea34db8154c09 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Thu, 16 Oct 2014 12:56:16 +0300 Subject: [PATCH] Make it possible to override GCC_PREFIX via environment variable --- build/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/makefile b/build/makefile index d7edd75..2a1dc49 100644 --- a/build/makefile +++ b/build/makefile @@ -1,6 +1,6 @@ # Define the compiler/tools prefix -GCC_PREFIX = arm-none-eabi- +GCC_PREFIX ?= arm-none-eabi- # Define tools CC = $(GCC_PREFIX)gcc