summaryrefslogtreecommitdiff
path: root/core/cortex-m0/toolchain.mk
blob: 390dd6a7f2bfab05fac9f2cad3a5db78c5a6493f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2022 The ChromiumOS Authors.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

ifeq ($(cc-name),gcc)
# coreboot sdk
CROSS_COMPILE_ARM_DEFAULT:=/opt/coreboot-sdk/bin/arm-eabi-
else
# llvm sdk
CROSS_COMPILE_ARM_DEFAULT:=arm-none-eabi-
endif

$(call set-option,CROSS_COMPILE,\
	$(CROSS_COMPILE_arm),\
	$(CROSS_COMPILE_ARM_DEFAULT))