mirror of
https://github.com/apache/nuttx.git
synced 2025-05-08 22:32:04 +08:00

Renaming "modlib" to "libelf" is more in line with the implementation content, which makes it easier for individual developers to understand the capabilities of this module. CONFIG_LIBC_MODLIB -> CONFIG_LIBC_ELF Signed-off-by: chao an <anchao.archer@bytedance.com>
104 lines
3.5 KiB
Plaintext
104 lines
3.5 KiB
Plaintext
############################################################################
|
|
# arch/ceva/src/xc5/Toolchain.defs
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
############################################################################
|
|
|
|
RTL_VERSION := $(CONFIG_ARCH_RTL_MAJOR).$(CONFIG_ARCH_RTL_MINOR).$(CONFIG_ARCH_RTL_REVISION)
|
|
|
|
ITCM_KB := $(shell expr $(CONFIG_ARCH_ITCM_SIZE) / 1024)
|
|
DTCM_KB := $(shell expr $(CONFIG_ARCH_DTCM_SIZE) / 1024)
|
|
|
|
#
|
|
# Supported toolchains
|
|
#
|
|
# Each toolchain definition should set:
|
|
#
|
|
# CROSSDEV The GNU toolchain triple (command prefix)
|
|
# ARCROSSDEV If required, an alternative prefix used when
|
|
# invoking ar and nm.
|
|
# ARCHCPUFLAGS CPU-specific flags selecting the instruction set
|
|
# FPU options, etc.
|
|
# ARCHOPTIMIZATION The optimization level that results in
|
|
# reliable code generation.
|
|
#
|
|
|
|
ARCROSSDEV ?= $(CROSSDEV)
|
|
ifneq ($(CROSSDEV),)
|
|
export LD_LIBRARY_PATH := $(CROSSDEV):$(LD_LIBRARY_PATH)
|
|
export PATH := $(CROSSDEV):$(PATH)
|
|
export CEVAXMTOOLS := $(CROSSDEV)
|
|
endif
|
|
|
|
ifeq ($(CONFIG_DEBUG_CUSTOMOPT),y)
|
|
ARCHOPTIMIZATION += $(CONFIG_DEBUG_OPTLEVEL)
|
|
else ifeq ($(CONFIG_DEBUG_FULLOPT),y)
|
|
ARCHOPTIMIZATION += -O3 -Os3
|
|
endif
|
|
|
|
ifneq ($(CONFIG_DEBUG_NOOPT),y)
|
|
ARCHOPTIMIZATION += -fno-strict-aliasing
|
|
endif
|
|
|
|
ifeq ($(CONFIG_FRAME_POINTER),y)
|
|
ARCHOPTIMIZATION += -fno-omit-frame-pointer -fno-optimize-sibling-calls
|
|
else
|
|
ARCHOPTIMIZATION += -fomit-frame-pointer
|
|
endif
|
|
|
|
ifeq ($(CONFIG_DEBUG_SYMBOLS),y)
|
|
ARCHOPTIMIZATION += $(CONFIG_DEBUG_SYMBOLS_LEVEL)
|
|
endif
|
|
|
|
ARCHCFLAGS += -fno-common
|
|
ARCHCXXFLAGS += -fno-common
|
|
|
|
ARCHCFLAGS += -Wall -Wstrict-prototypes -Wshadow -Wundef -Wno-attributes -Wno-unknown-pragmas
|
|
ARCHCXXFLAGS += -Wall -Wshadow -Wundef -Wno-attributes -Wno-unknown-pragmas
|
|
|
|
ifneq ($(CONFIG_LIBCXXTOOLCHAIN),y)
|
|
ARCHCXXFLAGS += -nostdinc++
|
|
endif
|
|
|
|
ARCHCPUFLAGS = -mrtl-version-$(RTL_VERSION) -Wa,-rtl$(RTL_VERSION)
|
|
ARCHCPUFLAGS += -Wa,-p -mmsg-full-path -TARG:arch=cevaxc5 -Wa,-vdiv4 -Wno-unused
|
|
|
|
LDFLAGS += -alignAllSections,c:0x20,d:0x4 -cevaxc5 -removeUnRefFunc
|
|
LDFLAGS += -internalCode$(ITCM_KB) -internalData$(DTCM_KB)
|
|
|
|
LIBGCC = $(CROSSDEV)libs/xc5/cevaxclib.lib
|
|
LIBGCC += $(CROSSDEV)libs/xc5/libcc.lib
|
|
|
|
CC = $(CROSSDEV)/cevaxccc -mquiet -Wa,-quiet
|
|
CXX = $(CROSSDEV)/cevaxccc -mquiet -Wa,-quiet -x c++
|
|
CPP = $(CROSSDEV)/cevaxccc -mquiet -Wa,-quiet -E -P -x c
|
|
|
|
# Loadable module definitions
|
|
|
|
CMODULEFLAGS = $(CFLAGS) -fvisibility=hidden
|
|
LDMODULEFLAGS = -r -T $(call CONVERT_PATH,$(TOPDIR)/libs/libc/elf/gnu-elf.ld)
|
|
|
|
# ELF module definitions
|
|
|
|
CELFFLAGS = $(CFLAGS) -fvisibility=hidden
|
|
CXXELFFLAGS = $(CXXFLAGS) -fvisibility=hidden
|
|
|
|
LDELFFLAGS = -r -e __start
|
|
LDELFFLAGS += -T $(call CONVERT_PATH,$(TOPDIR)$(DELIM)libs$(DELIM)libc$(DELIM)elf$(DELIM)gnu-elf.ld)
|