2010-08-27 03:32:49 +02:00
|
|
|
############################################################################
|
2019-08-14 14:34:18 +02:00
|
|
|
# boards/arm/lpc31xx/ea3131/locked/Makefile
|
2010-08-27 03:32:49 +02: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
|
2010-08-27 03:32:49 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2010-08-27 03:32:49 +02: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.
|
2010-08-27 03:32:49 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2010-08-27 03:32:49 +02:00
|
|
|
|
2010-08-29 16:27:58 +02:00
|
|
|
# Board-specific directory, board library, and application library
|
2010-08-28 21:46:58 +02:00
|
|
|
|
2015-07-03 17:33:02 +02:00
|
|
|
PASS1_SRCDIR = arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src
|
|
|
|
PASS1_LIBBOARD = libboard$(LIBEXT)
|
|
|
|
PASS1_LIBAPPS = libapps$(LIBEXT)
|
2010-08-29 16:27:58 +02:00
|
|
|
|
2011-03-21 22:59:35 +01:00
|
|
|
# Remove the application library (libapps) from the list of libraries. Add
|
2010-08-29 16:27:58 +02:00
|
|
|
# the boad library (liboard)
|
|
|
|
|
2015-07-03 17:33:02 +02:00
|
|
|
PASS1_LINKLIBS = $(filter-out $(PASS1_LIBAPPS),$(LINKLIBS))
|
2012-11-11 14:52:31 +01:00
|
|
|
PASS1_LINKLIBS += $(PASS1_LIBBOARD)
|
2010-08-28 21:46:58 +02:00
|
|
|
|
|
|
|
# Get the paths to the libraries and the links script path in format that
|
|
|
|
# is appropriate for the host OS
|
|
|
|
|
2020-05-18 16:18:15 +02:00
|
|
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
2010-08-28 04:30:50 +02:00
|
|
|
# Windows-native toolchains
|
2018-05-29 19:36:21 +02:00
|
|
|
PASS1_LIBPATHS += -L"${shell cygpath -w "$(TOPDIR)$(DELIM)staging"}"
|
2020-04-29 16:29:55 +02:00
|
|
|
PASS1_LIBPATHS += -L"${shell cygpath -w "$(TOPDIR)$(DELIM)boards$(DELIM)arm$(DELIM)lpc31xx$(DELIM)ea3131$(DELIM)src"}"
|
2020-04-29 04:53:12 +02:00
|
|
|
PASS1_LDSCRIPT = -T "${shell cygpath -w $(TOPDIR)$(DELIM)boards$(DELIM)arm$(DELIM)lpc31xx$(DELIM)ea3131$(DELIM)locked$(DELIM)ld-locked.inc}"
|
2010-08-28 04:30:50 +02:00
|
|
|
else
|
2014-04-14 00:22:22 +02:00
|
|
|
# Linux/Cygwin-native toolchain
|
2018-05-29 19:36:21 +02:00
|
|
|
PASS1_LIBPATHS += -L"$(TOPDIR)$(DELIM)staging"
|
2020-04-29 16:29:55 +02:00
|
|
|
PASS1_LIBPATHS += -L"$(TOPDIR)$(DELIM)boards$(DELIM)arm$(DELIM)lpc31xx$(DELIM)ea3131$(DELIM)src"
|
2020-04-29 04:53:12 +02:00
|
|
|
PASS1_LDSCRIPT = -T$(TOPDIR)$(DELIM)boards$(DELIM)arm$(DELIM)lpc31xx$(DELIM)ea3131$(DELIM)locked$(DELIM)ld-locked.inc
|
2010-08-28 04:30:50 +02:00
|
|
|
endif
|
2010-08-27 03:32:49 +02:00
|
|
|
|
2012-11-11 14:52:31 +01:00
|
|
|
PASS1_LDFLAGS = -r $(PASS1_LDSCRIPT)
|
|
|
|
PASS1_LDLIBS = $(patsubst %.a,%,$(patsubst lib%,-l%,$(PASS1_LINKLIBS)))
|
|
|
|
PASS1_LIBGCC = "${shell $(CC) -print-libgcc-file-name}"
|
2010-08-27 03:32:49 +02:00
|
|
|
|
2010-08-29 16:27:58 +02:00
|
|
|
# Targets:
|
|
|
|
|
2012-11-17 21:44:02 +01:00
|
|
|
all: $(PASS1_SRCDIR)$(DELIM)locked.r
|
2010-08-28 04:30:50 +02:00
|
|
|
|
2010-08-29 16:27:58 +02:00
|
|
|
.PHONY: depend clean distclean
|
|
|
|
|
2010-08-28 21:46:58 +02:00
|
|
|
# Create include-able linker script that specifies all of the symbols to be
|
|
|
|
# resolved in the locked.r file.
|
|
|
|
|
2012-11-17 21:44:02 +01:00
|
|
|
ld-locked.inc: mklocked.sh $(TOPDIR)$(DELIM).config
|
2010-08-28 04:30:50 +02:00
|
|
|
@echo "MK: ld-locked.inc"
|
2015-07-03 17:33:02 +02:00
|
|
|
$(Q) .$(DELIM)mklocked.sh "$(TOPDIR)"
|
2010-08-28 04:30:50 +02:00
|
|
|
|
2010-08-29 16:27:58 +02:00
|
|
|
# Make the board library. This is normally done in arch/arm/src/Makefile.
|
|
|
|
# However, we need it earlier here when doing a two-pass build so that libboard.a
|
|
|
|
# is available to link against.
|
|
|
|
|
|
|
|
$(PASS1_LIBBOARD):
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C $(TOPDIR)$(DELIM)boards$(DELIM)arm$(DELIM)lpc31xx$(DELIM)ea3131$(DELIM)src libboard$(LIBEXT) EXTRAFLAGS="$(EXTRAFLAGS)"
|
2010-08-29 16:27:58 +02:00
|
|
|
|
2010-08-28 21:46:58 +02:00
|
|
|
# Create the locked.r file containing all of the code (except the start-up code)
|
|
|
|
# that needs to lie in the locked text region.
|
|
|
|
|
2010-08-29 16:27:58 +02:00
|
|
|
locked.r: ld-locked.inc $(PASS1_LIBBOARD)
|
2010-08-28 04:30:50 +02:00
|
|
|
@echo "LD: locked.r"
|
2021-06-04 13:57:34 +02:00
|
|
|
$(Q) $(LD) -o $@ $(PASS1_LDFLAGS) $(PASS1_LIBPATHS) -Wl,--start-group $(PASS1_LDLIBS) -Wl,--end-group $(PASS1_LIBGCC)
|
2015-07-03 17:33:02 +02:00
|
|
|
$(Q) $(NM) $@ > locked.map
|
2019-02-04 23:20:35 +01:00
|
|
|
$(Q) fgrep " U " locked.map | grep -v nx_start
|
2015-07-03 17:33:02 +02:00
|
|
|
$(Q) $(CROSSDEV)size $@
|
2010-08-27 03:32:49 +02:00
|
|
|
|
2012-11-17 21:44:02 +01:00
|
|
|
$(PASS1_SRCDIR)$(DELIM)locked.r: locked.r
|
2015-07-03 17:33:02 +02:00
|
|
|
$(Q) cp -a locked.r $(TOPDIR)$(DELIM)$(PASS1_SRCDIR)$(DELIM)locked.r
|
2010-08-29 16:27:58 +02:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
.depend:
|
|
|
|
|
|
|
|
depend: .depend
|
2010-08-27 03:32:49 +02:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, locked.r)
|
2020-05-27 14:31:26 +02:00
|
|
|
$(call DELFILE, $(TOPDIR)$(DELIM)$(PASS1_SRCDIR)$(DELIM)locked.r)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, locked.map)
|
2012-11-17 21:44:02 +01:00
|
|
|
$(call CLEAN)
|
2010-08-27 03:32:49 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, ld-locked.inc)
|