2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
|
|
|
# arch/sim/src/Makefile
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
2018-11-24 22:07:12 +01:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2012, 2014, 2016, 2018 Gregory Nutt. All
|
|
|
|
# rights reserved.
|
2012-01-17 18:42:31 +01:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
2008-01-08 01:19:24 +01:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-05-19 11:43:29 +02:00
|
|
|
ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src
|
|
|
|
|
2020-05-25 15:23:11 +02:00
|
|
|
INCLUDES += ${shell $(INCDIR) "$(CC)" $(ARCH_SRCDIR)}
|
2020-05-19 11:43:29 +02:00
|
|
|
INCLUDES += ${shell $(INCDIR) "$(CC)" $(ARCH_SRCDIR)$(DELIM)chip}
|
|
|
|
INCLUDES += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)sched}
|
|
|
|
|
|
|
|
CPPFLAGS += $(INCLUDES) $(EXTRAFLAGS)
|
|
|
|
CFLAGS += $(INCLUDES) $(EXTRAFLAGS)
|
|
|
|
CXXFLAGS += $(INCLUDES) $(EXTRAFLAGS)
|
|
|
|
AFLAGS += $(INCLUDES) $(EXTRAFLAGS)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-02-08 15:52:34 +01:00
|
|
|
# Determine which objects are required in the link.The
|
|
|
|
# up_head object normally draws in all that is needed, but
|
|
|
|
# there are a fews that must be included because they
|
|
|
|
# are called only from the host OS-specific logic(HOSTOBJS)
|
|
|
|
|
|
|
|
LINKOBJS = up_head$(OBJEXT)
|
|
|
|
REQUIREDOBJS = $(LINKOBJS)
|
|
|
|
|
2014-10-03 16:23:57 +02:00
|
|
|
ifeq ($(CONFIG_HOST_X86_64),y)
|
|
|
|
ifeq ($(CONFIG_SIM_M32),y)
|
|
|
|
ASRCS += up_setjmp32.S
|
|
|
|
else
|
|
|
|
ASRCS += up_setjmp64.S
|
|
|
|
endif
|
2017-09-04 15:25:10 +02:00
|
|
|
else ifeq ($(CONFIG_HOST_X86),y)
|
2014-10-03 16:23:57 +02:00
|
|
|
ASRCS += up_setjmp32.S
|
2017-09-04 15:25:10 +02:00
|
|
|
else ifeq ($(CONFIG_HOST_ARM),y)
|
2017-08-26 19:44:48 +02:00
|
|
|
ASRCS += up_setjmp_arm.S
|
|
|
|
endif
|
|
|
|
|
2011-01-23 18:40:10 +01:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2014-09-02 00:21:29 +02:00
|
|
|
|
|
|
|
CSRCS = up_initialize.c up_idle.c up_interruptcontext.c up_initialstate.c
|
|
|
|
CSRCS += up_createstack.c up_usestack.c up_releasestack.c up_stackframe.c
|
|
|
|
CSRCS += up_unblocktask.c up_blocktask.c up_releasepending.c
|
2020-02-08 15:52:34 +01:00
|
|
|
CSRCS += up_reprioritizertr.c up_exit.c up_schedulesigaction.c
|
|
|
|
CSRCS += up_allocateheap.c
|
2014-09-02 00:21:29 +02:00
|
|
|
|
2019-08-08 00:05:00 +02:00
|
|
|
VPATH = sim
|
2019-08-26 21:09:57 +02:00
|
|
|
DEPPATH = $(patsubst %,--dep-path %,$(subst :, ,$(VPATH)))
|
2019-08-08 00:05:00 +02:00
|
|
|
|
2020-05-19 11:43:29 +02:00
|
|
|
HOSTCFLAGS += ${shell $(INCDIR) "$(CC)" $(ARCH_SRCDIR)}
|
2020-07-26 14:45:57 +02:00
|
|
|
HOSTSRCS = up_hostmemory.c up_hosttime.c
|
|
|
|
ifneq ($(CONFIG_HOST_MACOS),y)
|
|
|
|
STDLIBS += -lrt
|
2020-03-26 05:58:26 +01:00
|
|
|
endif
|
|
|
|
|
2019-09-28 18:46:12 +02:00
|
|
|
ifeq ($(CONFIG_STACK_COLORATION),y)
|
|
|
|
CSRCS += up_checkstack.c
|
|
|
|
endif
|
|
|
|
|
2016-02-11 19:16:19 +01:00
|
|
|
ifeq ($(CONFIG_SPINLOCK),y)
|
|
|
|
HOSTSRCS += up_testset.c
|
|
|
|
endif
|
|
|
|
|
2016-02-10 21:58:21 +01:00
|
|
|
ifeq ($(CONFIG_SMP),y)
|
2020-02-09 07:36:02 +01:00
|
|
|
CSRCS += up_smpsignal.c up_cpuidlestack.c
|
|
|
|
REQUIREDOBJS += up_smpsignal$(OBJEXT)
|
2019-11-11 03:42:00 +01:00
|
|
|
HOSTCFLAGS += -DCONFIG_SMP=1 -DCONFIG_SMP_NCPUS=$(CONFIG_SMP_NCPUS)
|
2020-04-17 19:04:08 +02:00
|
|
|
HOSTCFLAGS += -DCONFIG_USEC_PER_TICK=$(CONFIG_USEC_PER_TICK)
|
|
|
|
ifeq ($(CONFIG_SIM_WALLTIME),y)
|
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_WALLTIME=1
|
2020-07-21 21:00:08 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SCHED_INSTRUMENTATION),y)
|
|
|
|
HOSTCFLAGS += -DCONFIG_SCHED_INSTRUMENTATION=1
|
2020-04-17 19:04:08 +02:00
|
|
|
endif
|
2016-02-10 21:58:21 +01:00
|
|
|
HOSTSRCS += up_simsmp.c
|
2020-02-08 14:52:26 +01:00
|
|
|
STDLIBS += -lpthread
|
2016-02-10 21:58:21 +01:00
|
|
|
endif
|
|
|
|
|
2016-02-16 20:40:15 +01:00
|
|
|
ifeq ($(CONFIG_SCHED_INSTRUMENTATION),y)
|
2016-03-17 16:50:33 +01:00
|
|
|
ifneq ($(CONFIG_SCHED_INSTRUMENTATION_BUFFER),y)
|
2016-02-16 20:40:15 +01:00
|
|
|
CSRCS += up_schednote.c
|
|
|
|
endif
|
2016-03-17 16:50:33 +01:00
|
|
|
endif
|
2016-02-16 20:40:15 +01:00
|
|
|
|
2014-10-01 16:40:52 +02:00
|
|
|
ifeq ($(CONFIG_DEV_CONSOLE),y)
|
2019-11-12 15:03:38 +01:00
|
|
|
ifneq ($(CONFIG_SYSLOG_RPMSG),y)
|
2020-02-08 14:52:26 +01:00
|
|
|
CSRCS += up_devconsole.c
|
2014-10-01 16:40:52 +02:00
|
|
|
HOSTSRCS += up_simuart.c
|
2014-08-07 02:27:10 +02:00
|
|
|
endif
|
2019-11-12 15:03:38 +01:00
|
|
|
endif
|
2014-08-07 02:27:10 +02:00
|
|
|
|
2016-08-12 21:14:03 +02:00
|
|
|
ifeq ($(CONFIG_ONESHOT),y)
|
|
|
|
CSRCS += up_oneshot.c
|
|
|
|
endif
|
|
|
|
|
2020-02-12 18:53:05 +01:00
|
|
|
ifeq ($(CONFIG_RTC_DRIVER),y)
|
|
|
|
CSRCS += up_rtc.c
|
|
|
|
endif
|
|
|
|
|
2011-08-04 03:25:58 +02:00
|
|
|
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
2020-02-08 15:52:34 +01:00
|
|
|
CSRCS += up_lcd.c
|
2011-08-04 03:25:58 +02:00
|
|
|
else
|
|
|
|
CSRCS += up_framebuffer.c
|
2011-09-28 16:59:54 +02:00
|
|
|
ifeq ($(CONFIG_SIM_X11FB),y)
|
2020-02-10 05:55:10 +01:00
|
|
|
ifeq ($(CONFIG_SIM_X11NOSHM),y)
|
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_X11NOSHM=1
|
|
|
|
endif
|
2011-08-04 03:25:58 +02:00
|
|
|
HOSTSRCS += up_x11framebuffer.c
|
2020-02-08 15:52:34 +01:00
|
|
|
STDLIBS += -lX11 -lXext
|
2011-09-28 19:41:58 +02:00
|
|
|
ifeq ($(CONFIG_SIM_TOUCHSCREEN),y)
|
|
|
|
CSRCS += up_touchscreen.c
|
2020-02-08 15:52:34 +01:00
|
|
|
REQUIREDOBJS += up_touchscreen$(OBJEXT)
|
2020-02-10 05:55:10 +01:00
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_TOUCHSCREEN=1
|
2011-09-28 19:41:58 +02:00
|
|
|
HOSTSRCS += up_x11eventloop.c
|
2020-02-12 18:53:05 +01:00
|
|
|
else ifeq ($(CONFIG_SIM_AJOYSTICK),y)
|
2014-12-14 17:19:07 +01:00
|
|
|
CSRCS += up_ajoystick.c
|
2020-02-10 05:55:10 +01:00
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_AJOYSTICK=1
|
2014-12-14 17:19:07 +01:00
|
|
|
HOSTSRCS += up_x11eventloop.c
|
|
|
|
endif
|
2011-09-28 19:41:58 +02:00
|
|
|
endif
|
2011-08-04 03:25:58 +02:00
|
|
|
endif
|
2011-07-01 21:08:04 +02:00
|
|
|
|
2016-08-03 17:44:48 +02:00
|
|
|
ifeq ($(CONFIG_SIM_IOEXPANDER),y)
|
|
|
|
CSRCS += up_ioexpander.c
|
|
|
|
endif
|
|
|
|
|
2020-02-08 15:52:34 +01:00
|
|
|
ifeq ($(CONFIG_SIM_SPIFLASH),y)
|
|
|
|
CSRCS += up_spiflash.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SIM_QSPIFLASH),y)
|
|
|
|
CSRCS += up_qspiflash.c
|
|
|
|
endif
|
|
|
|
|
2007-05-12 18:21:19 +02:00
|
|
|
ifeq ($(CONFIG_FS_FAT),y)
|
2015-11-25 15:36:44 +01:00
|
|
|
CSRCS += up_blockdevice.c up_deviceimage.c
|
2020-02-08 14:52:26 +01:00
|
|
|
STDLIBS += -lz
|
2007-05-12 18:21:19 +02:00
|
|
|
endif
|
2011-07-01 21:08:04 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_ROMGETC),y)
|
2015-11-25 15:36:44 +01:00
|
|
|
CSRCS += up_romgetc.c
|
2011-07-01 21:08:04 +02:00
|
|
|
endif
|
|
|
|
|
2020-03-18 13:12:26 +01:00
|
|
|
ifeq ($(CONFIG_SIM_NETDEV_TAP),y)
|
2015-11-25 15:36:44 +01:00
|
|
|
CSRCS += up_netdriver.c
|
2018-07-04 22:10:40 +02:00
|
|
|
HOSTCFLAGS += -DNETDEV_BUFSIZE=$(CONFIG_NET_ETH_PKTSIZE)
|
2011-01-23 18:40:10 +01:00
|
|
|
ifneq ($(HOSTOS),Cygwin)
|
2020-02-10 04:21:27 +01:00
|
|
|
HOSTSRCS += up_tapdev.c
|
SUMMARY
-------
This patch enhances networking support for the simulation under Linux.
Includes updated support for Linux TUN/TAP, and the addition of support for
Linux bridge devices.
CHANGES
-------
o Check to see if the d_txavail callback is present before calling it in
the arp send code. This prevents a segfault when simulating the telnetd
daemon with arp send enabled.
o Adjust the simulation's netdriver_loop() so it will detect and respond to
ARP requests.
o Do not attempt to take the tap device's hardware address for use by the
simulation. That hardware address belongs to the host end of the link,
not the simulation end. Generate a randomized MAC address instead.
o Do not assign an IP address to the interface on the host side of the TAP
link.
+ Provide two modes: "host route" and "bridge".
+ In host route mode, maintain a host route that points any traffic for the
simulation's IP address to the tap device. In this mode, so long as the
simulation's IP is a free address in the same subnet as the host, no
additional configuration will be required to talk to it from the host.
Note that address changes are handled automatically if they follow the
rule of if-down/set-address/if-up, which everything seems to.
+ In bridge mode, add the tap device to the specified bridge instance. See
configs/sim/NETWORK-LINUX.txt for information and usage examples. This
enables much more flexible configurations (with fewer headaches), such as
running multiple simulations on a single host, all of which can access
the network the host is connected to.
o Refresh configurations in configs/sim where CONFIG_NET=y. They default
to "host route" mode.
o Add configs/sim/NETWORK-LINUX.txt
CAVEATS
-------
- The MAC address generation code is extremely simplistic, and does not
check for potential conflicts on the network. Probably not an issue, but
something to be aware of.
- I was careful to leave it in a state where Cygwin/pcap should still work,
but I don't have a Windows environment to test in. This should be
checked.
- I don't know if this was ever intended to work with OS X. I didn't even
try to test it there.
NOTES
-----
- Was able to get telnetd working and simulate nsh over telnet, but only so
long as listen backlogs were disabled.
There appears to be a bug in the backlog code where sockets are being
returned in SYN_RCVD state instead of waiting until they're ESTABLISHED;
if you perform an immediate send after accepting the connection, it will
confuse the stack and the send will hang; additionally, the connection
will never reach ESTABLISHED state.
Can be worked around by adding a sleep(1) after the accept in telnetd. I
don't have the necessary knowledge of the IP stack to know what the
correct fix is.
2016-05-21 01:36:14 +02:00
|
|
|
ifeq ($(CONFIG_SIM_NET_BRIDGE),y)
|
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_NET_BRIDGE
|
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_NET_BRIDGE_DEVICE=\"$(CONFIG_SIM_NET_BRIDGE_DEVICE)\"
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SIM_NET_HOST_ROUTE),y)
|
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_NET_HOST_ROUTE
|
|
|
|
endif
|
2017-04-03 01:46:22 +02:00
|
|
|
else # HOSTOS != Cygwin
|
2020-02-10 04:21:27 +01:00
|
|
|
HOSTSRCS += up_wpcap.c
|
2015-11-25 15:36:44 +01:00
|
|
|
DRVLIB = /lib/w32api/libws2_32.a /lib/w32api/libiphlpapi.a
|
2017-04-03 01:46:22 +02:00
|
|
|
endif # HOSTOS != Cygwin
|
2020-03-18 13:12:26 +01:00
|
|
|
else ifeq ($(CONFIG_SIM_NETDEV_VPNKIT),y)
|
|
|
|
CSRCS += up_netdriver.c
|
2020-03-21 03:55:58 +01:00
|
|
|
HOSTCFLAGS += -DCONFIG_SIM_NETDEV_VPNKIT_PATH=\"$(CONFIG_SIM_NETDEV_VPNKIT_PATH)\"
|
2020-03-18 13:12:26 +01:00
|
|
|
HOSTSRCS += up_vpnkit.c
|
|
|
|
VPATH += :sim/vpnkit
|
|
|
|
HOSTSRCS += protocol.c negotiate.c
|
|
|
|
endif
|
2007-05-12 18:21:19 +02:00
|
|
|
|
2020-08-27 02:38:44 +02:00
|
|
|
ifeq ($(CONFIG_SIM_HCISOCKET),y)
|
|
|
|
HOSTSRCS += up_hcisocket_host.c
|
|
|
|
CSRCS += up_hcisocket.c
|
|
|
|
endif
|
|
|
|
|
2019-11-12 15:03:38 +01:00
|
|
|
ifeq ($(CONFIG_RPTUN),y)
|
|
|
|
CSRCS += up_rptun.c
|
2020-05-01 18:41:07 +02:00
|
|
|
endif
|
2019-11-12 15:03:38 +01:00
|
|
|
|
2015-11-25 15:36:44 +01:00
|
|
|
ifeq ($(CONFIG_FS_HOSTFS),y)
|
2019-11-12 15:03:38 +01:00
|
|
|
ifneq ($(CONFIG_FS_HOSTFS_RPMSG),y)
|
2015-11-25 15:36:44 +01:00
|
|
|
HOSTSRCS += up_hostfs.c
|
2020-03-26 02:03:13 +01:00
|
|
|
HOSTCFLAGS += -DCONFIG_NAME_MAX=$(CONFIG_NAME_MAX)
|
2015-11-25 15:36:44 +01:00
|
|
|
|
|
|
|
up_hostfs.c: hostfs.h
|
|
|
|
|
|
|
|
hostfs.h: $(TOPDIR)/include/nuttx/fs/hostfs.h
|
|
|
|
@echo "CP: $<"
|
|
|
|
$(Q) cp $< $@
|
|
|
|
endif
|
2019-11-12 15:03:38 +01:00
|
|
|
endif
|
2015-11-25 15:36:44 +01:00
|
|
|
|
2011-01-23 18:40:10 +01:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
NUTTXOBJS = $(AOBJS) $(COBJS)
|
2011-01-23 18:40:10 +01:00
|
|
|
HOSTOBJS = $(HOSTSRCS:.c=$(OBJEXT))
|
2008-06-01 15:18:51 +02:00
|
|
|
|
2011-01-23 18:40:10 +01:00
|
|
|
SRCS = $(ASRCS) $(CSRCS) $(HOSTSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS) $(HOSTOBJS)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-05-17 18:43:15 +02:00
|
|
|
# Override in Make.defs if linker is not 'ld'
|
|
|
|
|
2020-01-27 16:00:52 +01:00
|
|
|
ifeq ($(HOSTOS),Darwin)
|
2020-06-17 11:41:35 +02:00
|
|
|
LDUNEXPORTSYMBOLS ?= -unexported_symbols_list nuttx-names.dat
|
2020-01-27 16:00:52 +01:00
|
|
|
else
|
2020-07-09 19:20:18 +02:00
|
|
|
ARCHSCRIPT += -T nuttx.ld
|
2020-01-27 16:00:52 +01:00
|
|
|
LDSTARTGROUP ?= --start-group
|
|
|
|
LDENDGROUP ?= --end-group
|
|
|
|
endif
|
2016-05-17 18:43:15 +02:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
# Determine which NuttX libraries will need to be linked in
|
|
|
|
# Most are provided by LINKLIBS on the MAKE command line
|
|
|
|
|
2012-11-12 02:54:54 +01:00
|
|
|
RELLIBS = $(patsubst %.a,%,$(patsubst lib%,-l%,$(LINKLIBS)))
|
2018-05-29 19:36:21 +02:00
|
|
|
RELPATHS += -L"$(TOPDIR)/staging"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
# Add the board-specific library and directory
|
|
|
|
|
2014-04-14 00:22:22 +02:00
|
|
|
LIBPATHS += -L board
|
2012-11-12 02:54:54 +01:00
|
|
|
RELPATHS += -L board
|
|
|
|
RELLIBS += -lboard
|
2011-09-29 18:25:21 +02:00
|
|
|
|
|
|
|
# Make targets begin here
|
|
|
|
|
2007-02-28 00:59:20 +01:00
|
|
|
all: up_head$(OBJEXT) libarch$(LIBEXT)
|
2012-01-29 21:07:16 +01:00
|
|
|
|
2014-09-04 21:31:34 +02:00
|
|
|
.PHONY: board/libboard$(LIBEXT) export_startup clean distclean cleanrel depend
|
2007-02-28 00:59:20 +01:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-03-01 00:45:56 +01:00
|
|
|
$(COBJS) $(LINKOBJS): %$(OBJEXT): %.c
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-06-01 15:18:51 +02:00
|
|
|
$(HOSTOBJS): %$(OBJEXT): %.c
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) echo "CC: $<"
|
2012-11-12 00:44:31 +01:00
|
|
|
$(Q) "$(CC)" -c $(HOSTCFLAGS) $< -o $@
|
2007-08-28 02:18:50 +02:00
|
|
|
|
2008-06-01 15:18:51 +02:00
|
|
|
# The architecture-specific library
|
2011-09-29 18:25:21 +02:00
|
|
|
|
|
|
|
libarch$(LIBEXT): $(NUTTXOBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(NUTTXOBJS))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
# The "board"-specific library. Of course, there really are no boards in
|
|
|
|
# the simulation. However, this is a good place to keep parts of the simulation
|
|
|
|
# that are not hardware-related.
|
|
|
|
|
2011-10-11 16:34:18 +02:00
|
|
|
board/libboard$(LIBEXT):
|
2020-04-10 04:37:54 +02:00
|
|
|
$(Q) $(MAKE) -C board TOPDIR="$(TOPDIR)" libboard$(LIBEXT) EXTRAFLAGS="$(EXTRAFLAGS)"
|
2011-09-29 18:25:21 +02:00
|
|
|
|
2008-06-01 15:18:51 +02:00
|
|
|
# A partially linked object containing only NuttX code (no interface to host OS)
|
|
|
|
# Change the names of most symbols that conflict with libc symbols.
|
|
|
|
# Generate the final NuttX binary by linking the host-specific objects with the NuttX
|
|
|
|
# specific objects (with munged names)
|
|
|
|
|
2020-07-09 19:20:18 +02:00
|
|
|
# C++ global objects are constructed before main get executed, but it isn't a good
|
|
|
|
# point for simulator because NuttX doesn't finish the kernel initialization yet.
|
|
|
|
# So we have to skip the standard facilities and do the construction by ourself.
|
|
|
|
# But how to achieve the goal?
|
|
|
|
# 1.Command linker generate the default script(-verbose)
|
|
|
|
# 2.Replace __init_array_start/__init_array_end with _sinit/_einit
|
|
|
|
# 3.Append __init_array_start = .; __init_array_end = .;
|
|
|
|
# Step 2 let nxtask_startup find objects need to construct
|
|
|
|
# Step 3 cheat the host there is no object to construct
|
|
|
|
# Note: the destructor can be fixed in the same way.
|
|
|
|
|
2020-07-10 06:00:56 +02:00
|
|
|
nuttx$(EXEEXT): libarch$(LIBEXT) board/libboard$(LIBEXT) $(LINKOBJS) $(HOSTOBJS)
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) echo "LD: nuttx$(EXEEXT)"
|
2020-07-10 06:00:56 +02:00
|
|
|
$(call PREPROCESS, nuttx-names.in, nuttx-names.dat)
|
2020-07-09 07:57:30 +02:00
|
|
|
$(Q) $(LD) -r $(LDLINKFLAGS) $(RELPATHS) $(EXTRA_LIBPATHS) -o nuttx.rel $(REQUIREDOBJS) $(LDSTARTGROUP) $(RELLIBS) $(EXTRA_LIBS) $(LDENDGROUP) $(LDUNEXPORTSYMBOLS)
|
|
|
|
ifneq ($(HOSTOS),Darwin)
|
|
|
|
$(Q) $(OBJCOPY) --redefine-syms=nuttx-names.dat nuttx.rel
|
2020-07-09 19:20:18 +02:00
|
|
|
$(Q) $(CC) $(CCLINKFLAGS) -Wl,-verbose 2>&1 | \
|
|
|
|
sed -e '/====/,/====/!d;//d' -e 's/__executable_start/_stext/g' -e 's/__init_array_start/_sinit/g' \
|
|
|
|
-e 's/__init_array_end/_einit/g' -e 's/__fini_array_start/_sfini/g' -e 's/__fini_array_end/_efini/g' >nuttx.ld
|
|
|
|
$(Q) echo "__init_array_start = .; __init_array_end = .; __fini_array_start = .; __fini_array_end = .;" >>nuttx.ld
|
2020-07-09 07:57:30 +02:00
|
|
|
endif
|
2020-05-08 14:10:45 +02:00
|
|
|
$(if $(CONFIG_HAVE_CXX),\
|
2020-07-09 19:20:18 +02:00
|
|
|
$(Q) "$(CXX)" $(CCLINKFLAGS) $(LIBPATHS) $(ARCHSCRIPT) -o $(TOPDIR)/$@ nuttx.rel $(HOSTOBJS) $(DRVLIB) $(STDLIBS),\
|
|
|
|
$(Q) "$(CC)" $(CCLINKFLAGS) $(LIBPATHS) $(ARCHSCRIPT) -o $(TOPDIR)/$@ nuttx.rel $(HOSTOBJS) $(DRVLIB) $(STDLIBS))
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) $(NM) $(TOPDIR)/$@ | \
|
2007-09-23 18:58:09 +02:00
|
|
|
grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
|
|
|
|
sort > $(TOPDIR)/System.map
|
2007-02-28 00:59:20 +01:00
|
|
|
|
2011-07-12 00:52:51 +02:00
|
|
|
# This is part of the top-level export target
|
|
|
|
|
2014-09-04 21:31:34 +02:00
|
|
|
export_startup: board/libboard$(LIBEXT) up_head.o $(HOSTOBJS)
|
2012-03-25 18:22:07 +02:00
|
|
|
cp up_head.o $(HOSTOBJS) ${EXPORT_DIR}/startup
|
|
|
|
cp nuttx-names.dat ${EXPORT_DIR}/libs
|
|
|
|
echo main NXmain >> ${EXPORT_DIR}/libs/nuttx-names.dat
|
2011-07-12 00:52:51 +02:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
2020-07-22 09:54:29 +02:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2019-10-24 16:10:55 +02:00
|
|
|
$(Q) if [ -e board/Makefile ]; then \
|
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" depend ; \
|
|
|
|
fi
|
2020-08-30 05:06:12 +02:00
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(ASRCS) $(CSRCS) >Make.dep
|
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(HOSTCFLAGS) -- $(HOSTSRCS) >>Make.dep
|
2020-03-23 03:44:03 +01:00
|
|
|
$(Q) touch $@
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
depend: .depend
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-07-09 07:57:30 +02:00
|
|
|
clean:
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) if [ -e board/Makefile ]; then \
|
2011-10-11 16:34:18 +02:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" clean ; \
|
|
|
|
fi
|
2020-07-09 19:20:18 +02:00
|
|
|
$(call DELFILE, nuttx.ld)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, nuttx.rel)
|
2020-07-09 07:57:30 +02:00
|
|
|
$(call DELFILE, nuttx-names.dat)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, libarch$(LIBEXT))
|
2008-01-10 14:38:13 +01:00
|
|
|
$(call CLEAN)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) if [ -e board/Makefile ]; then \
|
2011-10-11 16:34:18 +02:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" distclean ; \
|
|
|
|
fi
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 03:44:03 +01:00
|
|
|
$(call DELFILE, .depend)
|
2015-11-25 15:36:44 +01:00
|
|
|
$(call DELFILE, hostfs.h)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
-include Make.dep
|