mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
This will be used to support ITE IT8380 chip which contains an Andes N801 core. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=none BUG=chrome-os-partner:23574 TEST=make BOARD=it8380dev Change-Id: I91f9380c51c7712aa6a6418223a11551ab0091ce Reviewed-on: https://chromium-review.googlesource.com/175480 Reviewed-by: Randall Spangler <rspangler@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org>
16 lines
415 B
Makefile
16 lines
415 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Andestar v3m architecture core OS files build
|
|
#
|
|
|
|
# Select Andes bare-metal toolchain
|
|
CROSS_COMPILE?=nds32le-cros-elf-
|
|
|
|
# CPU specific compilation flags
|
|
CFLAGS_CPU=-march=v3m -Os
|
|
|
|
core-y=cpu.o init.o panic.o task.o switch.o
|