Adds a compilerPrefix argument for using a compiler with a different

toolchain.
Resolves github #45.

Change-Id: I6f16dcc41278f12fbbc1f742d6aaf3ad19ac61bc
This commit is contained in:
Fredric Silberberg
2016-01-04 19:49:59 -05:00
parent 20f23e0e31
commit 880bc7db9f
2 changed files with 36 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
def compilerPrefix = 'arm-frc-linux-gnueabi-'
def compilerPrefix = project.hasProperty('compilerPrefix') ? project.compilerPrefix : 'arm-frc-linux-gnueabi-'
model {
toolChains {
gcc(Gcc) {