2015-01-23 18:45:50 +01:00
|
|
|
############################################################################
|
2019-08-16 15:40:59 +02:00
|
|
|
# boards/arm/tiva/lm3s6965-ek/scripts/Make.defs
|
2015-01-23 18:45:50 +01:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# 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
|
2015-01-23 18:45:50 +01:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-01-23 18:45:50 +01:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# 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.
|
2015-01-23 18:45:50 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-19 16:25:18 +02:00
|
|
|
include $(TOPDIR)/.config
|
|
|
|
include $(TOPDIR)/tools/Config.mk
|
|
|
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
2015-01-23 18:45:50 +01:00
|
|
|
|
2022-09-17 15:34:35 +02:00
|
|
|
ifeq ($(CONFIG_ARM_TOOLCHAIN_ARMCLANG),y)
|
|
|
|
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)ld.sct
|
|
|
|
else
|
|
|
|
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)ld.script
|
|
|
|
endif
|
2015-01-23 18:45:50 +01:00
|
|
|
|
|
|
|
ARCHPICFLAGS = -fpic -msingle-pic-base -mpic-register=r10
|
2021-05-22 20:25:05 +02:00
|
|
|
ifeq ($(CONFIG_NXFLAT),y)
|
|
|
|
# mpic-data-is-text-relative flag first time appeared in GCC source code tree on 2016-Jul-12
|
|
|
|
# and it was included in GCC 4.9.4 release on 2016-Aug-03.
|
|
|
|
ARCHCC_HAS_PIC_DATA_IS_TEXT_RELATIVE_FLAG = ${shell $(CC) --target-help 2>&1 | grep -c "mpic-data-is-text-relative"}
|
|
|
|
|
|
|
|
# Turn off -mpic-data-is-text-relative flag to access bss via the GOT
|
|
|
|
# (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=139630111)
|
|
|
|
ifneq ($(ARCHCC_HAS_PIC_DATA_IS_TEXT_RELATIVE_FLAG),0)
|
|
|
|
ARCHPICFLAGS += -mno-pic-data-is-text-relative
|
|
|
|
endif
|
|
|
|
endif
|
2015-01-23 18:45:50 +01:00
|
|
|
|
2022-05-12 15:42:03 +02:00
|
|
|
CFLAGS := $(ARCHCFLAGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
|
2015-01-23 18:45:50 +01:00
|
|
|
CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS)
|
2022-05-12 15:42:03 +02:00
|
|
|
CXXFLAGS := $(ARCHCXXFLAGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
|
2015-01-23 18:45:50 +01:00
|
|
|
CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS)
|
2020-09-24 12:46:51 +02:00
|
|
|
CPPFLAGS := $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS)
|
|
|
|
AFLAGS := $(CFLAGS) -D__ASSEMBLY__
|
2015-01-23 18:45:50 +01:00
|
|
|
|
2021-06-11 01:14:48 +02:00
|
|
|
NXFLATLDFLAGS1 = -r -d -warn-common
|
|
|
|
NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T$(TOPDIR)/binfmt/libnxflat/gnu-nxflat-pcrel.ld -no-check-sections
|
2015-01-23 18:45:50 +01:00
|
|
|
LDNXFLATFLAGS = -e main -s 2048
|
|
|
|
|
2020-02-14 07:28:18 +01:00
|
|
|
# Loadable module definitions
|
|
|
|
|
|
|
|
CMODULEFLAGS = $(CFLAGS) -mlong-calls # --target1-abs
|
|
|
|
|
|
|
|
LDMODULEFLAGS = -r -e module_initialize
|
2022-02-20 03:34:50 +01:00
|
|
|
LDMODULEFLAGS += -T $(call CONVERT_PATH,$(TOPDIR)/libs/libc/modlib/gnu-elf.ld)
|
2020-02-14 07:28:18 +01:00
|
|
|
|
|
|
|
# ELF module definitions
|
|
|
|
|
|
|
|
CELFFLAGS = $(CFLAGS) -mlong-calls
|
|
|
|
CXXELFFLAGS = $(CXXFLAGS) -mlong-calls
|
|
|
|
|
|
|
|
LDELFFLAGS = -r -e main
|
2022-04-24 03:42:58 +02:00
|
|
|
LDELFFLAGS += -T $(call CONVERT_PATH,$(TOPDIR)/binfmt/libelf/gnu-elf.ld)
|