mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
These are needed for fixed-point math calculations.
Taken from the same public repo where we got the 32-bit divide
routines for Cortex-M0. With minor modifications to match changes
we've made so far for the existing divide routines (put each function
in its own section, delete dead code, etc.)
BUG=chrome-os-partner:36126
BRANCH=minnie
TEST=hack in a debug console command to allow arbitrary int64 divide, see that
it works as expected
Change-Id: I987dbca7c806c71bc38fa816971ac3a54c1641a5
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/244501
Reviewed-by: Alec Berg <alecaberg@chromium.org>
25 lines
711 B
Makefile
25 lines
711 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2012 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.
|
|
#
|
|
# Cortex-M4 core OS files build
|
|
#
|
|
|
|
# Select ARMv7-m bare-metal toolchain
|
|
CROSS_COMPILE?=arm-none-eabi-
|
|
|
|
# FPU compilation flags
|
|
CFLAGS_FPU-$(CONFIG_FPU)=-mfpu=fpv4-sp-d16 -mfloat-abi=hard
|
|
|
|
# CPU specific compilation flags
|
|
CFLAGS_CPU+=-mthumb -Os -mno-sched-prolog
|
|
CFLAGS_CPU+=-mno-unaligned-access
|
|
CFLAGS_CPU+=$(CFLAGS_FPU-y)
|
|
|
|
core-y=cpu.o init.o ldivmod.o uldivmod.o
|
|
core-$(CONFIG_COMMON_PANIC_OUTPUT)+=panic.o
|
|
core-$(CONFIG_COMMON_RUNTIME)+=switch.o task.o
|
|
core-$(CONFIG_WATCHDOG)+=watchdog.o
|
|
core-$(CONFIG_MPU)+=mpu.o
|