2021-12-05 21:41:44 +08:00
|
|
|
############################################################################
|
2022-01-14 17:18:29 +08:00
|
|
|
# boards/risc-v/qemu-rv/rv-virt/scripts/Make.defs
|
2021-12-05 21:41:44 +08: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
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
include $(TOPDIR)/.config
|
|
|
|
include $(TOPDIR)/tools/Config.mk
|
2021-12-27 00:18:22 +08:00
|
|
|
include $(TOPDIR)/arch/risc-v/src/common/Toolchain.defs
|
2021-12-05 21:41:44 +08:00
|
|
|
|
2022-01-14 17:18:29 +08:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_QEMU_RV),y)
|
2022-05-09 10:02:46 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_KERNEL),y)
|
2023-03-27 07:01:47 +08:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_QEMU_RV64),y)
|
|
|
|
LDSCRIPT = ld-kernel64.script
|
|
|
|
else
|
|
|
|
LDSCRIPT = ld-kernel32.script
|
|
|
|
endif
|
2022-05-09 10:02:46 +08:00
|
|
|
else
|
2021-12-05 21:41:44 +08:00
|
|
|
LDSCRIPT = ld.script
|
|
|
|
endif
|
2022-05-09 10:02:46 +08:00
|
|
|
endif
|
2021-12-05 21:41:44 +08:00
|
|
|
|
2022-02-15 05:29:40 +08:00
|
|
|
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)$(LDSCRIPT)
|
2021-12-05 21:41:44 +08:00
|
|
|
ARCHPICFLAGS = -fpic -msingle-pic-base
|
|
|
|
|
2022-05-12 21:42:03 +08:00
|
|
|
CFLAGS := $(ARCHCFLAGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
|
2021-12-05 21:41:44 +08:00
|
|
|
CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS)
|
2022-05-12 21:42:03 +08:00
|
|
|
CXXFLAGS := $(ARCHCXXFLAGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
|
2021-12-05 21:41:44 +08:00
|
|
|
CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS)
|
|
|
|
CPPFLAGS := $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS)
|
2022-04-23 16:33:09 +08:00
|
|
|
AFLAGS += $(CFLAGS) -D__ASSEMBLY__
|
2021-12-05 21:41:44 +08:00
|
|
|
|
2022-05-03 05:31:28 +08:00
|
|
|
# ELF module definitions
|
|
|
|
|
|
|
|
CELFFLAGS = $(CFLAGS)
|
|
|
|
CXXELFFLAGS = $(CXXFLAGS)
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_RV32),y)
|
|
|
|
LDELFFLAGS = --oformat elf32-littleriscv
|
|
|
|
else
|
|
|
|
LDELFFLAGS = --oformat elf64-littleriscv
|
|
|
|
endif
|
|
|
|
|
risc-v/rv-virt: use fully linked apps for kernel build
Fully linked apps take less storage and are efficient to load. This
is to enable them for rv-vrit configurations in KERNEL build.
Changes:
- arch/risc-v/Kconfig select BINFMT_ELF_EXECUTABLE for QEMU-RV
- boards/risc-v/qemu-rv/rv-virt/configs
- knsh32/defconfig enable ELF_EXECUTABLE, LIBM, OSTEST
- knsh64/defconfig enable ELF_EXECUTABLE, LIBM, OSTEST
- ksmp64/defconfig enable ELF_EXECUTABLE, LIBM, OSTEST
- knetnsh64/defconfig enable ELF_EXECUTABLE, LIBM, OSTEST
- knetnsh64_smp/defconfig enable ELF_EXECUTABLE, LIBM, OSTEST
Additions:
- boards/risc-v/qemu-rv/rv-virt/scripts/
- gnu-elf.ld apps linker script
The ARCH_TEXT_VBASE of knsh32 is set to same as that of 64bit to reuse
the apps linker script.
Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
2024-01-11 11:37:40 +08:00
|
|
|
ifeq ($(CONFIG_BINFMT_ELF_RELOCATABLE),y)
|
|
|
|
LDELFFLAGS += -r
|
|
|
|
endif
|
|
|
|
|
2024-02-01 01:49:11 +08:00
|
|
|
# POSTBUILD management
|
|
|
|
|
|
|
|
# KERNEL builds need real ROMFS
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_BUILD_KERNEL),y)
|
|
|
|
ifeq ($(CONFIG_RISCV_SEMIHOSTING_HOSTFS),)
|
|
|
|
ifeq ($(wildcard $(BOARD_DIR)$(DELIM)src$(DELIM)romfs_boot.c),)
|
|
|
|
define POSTBUILD
|
|
|
|
$(Q) echo "Please replace stub ROMFS with real one."
|
|
|
|
$(Q) rm $(BOARD_DIR)$(DELIM)src$(DELIM)libboard.a
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define POSTBUILD
|
|
|
|
$(Q) echo "Please try nuttx.bin on target."
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|