mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
ec842133d9
macOS support is still not great, but this patch at least fixes some import Makefile subtargets.
118 lines
4.2 KiB
Makefile
118 lines
4.2 KiB
Makefile
## SPDX-License-Identifier: MIT OR Apache-2.0
|
|
##
|
|
## Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
|
|
|
include ../common/format.mk
|
|
include ../common/docker.mk
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
## Check for input variables that need be exported by the calling Makefile
|
|
##--------------------------------------------------------------------------------------------------
|
|
ifndef KERNEL_SYMBOLS_TOOL_PATH
|
|
$(error KERNEL_SYMBOLS_TOOL_PATH is not set)
|
|
endif
|
|
|
|
ifndef TARGET
|
|
$(error TARGET is not set)
|
|
endif
|
|
|
|
ifndef KERNEL_SYMBOLS_INPUT_ELF
|
|
$(error KERNEL_SYMBOLS_INPUT_ELF is not set)
|
|
endif
|
|
|
|
ifndef KERNEL_SYMBOLS_OUTPUT_ELF
|
|
$(error KERNEL_SYMBOLS_OUTPUT_ELF is not set)
|
|
endif
|
|
|
|
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
## Targets and Prerequisites
|
|
##--------------------------------------------------------------------------------------------------
|
|
KERNEL_SYMBOLS_MANIFEST = kernel_symbols/Cargo.toml
|
|
KERNEL_SYMBOLS_LINKER_SCRIPT = kernel_symbols/kernel_symbols.ld
|
|
|
|
KERNEL_SYMBOLS_RS = $(KERNEL_SYMBOLS_INPUT_ELF)_symbols.rs
|
|
KERNEL_SYMBOLS_DEMANGLED_RS = $(shell pwd)/$(KERNEL_SYMBOLS_INPUT_ELF)_symbols_demangled.rs
|
|
|
|
KERNEL_SYMBOLS_ELF = target/$(TARGET)/release/kernel_symbols
|
|
KERNEL_SYMBOLS_STRIPPED = target/$(TARGET)/release/kernel_symbols_stripped
|
|
|
|
# Export for build.rs of kernel_symbols crate.
|
|
export KERNEL_SYMBOLS_DEMANGLED_RS
|
|
|
|
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
## Command building blocks
|
|
##--------------------------------------------------------------------------------------------------
|
|
GET_SYMBOLS_SECTION_VIRT_ADDR = $(DOCKER_TOOLS) $(EXEC_SYMBOLS_TOOL) \
|
|
--get_symbols_section_virt_addr $(KERNEL_SYMBOLS_OUTPUT_ELF)
|
|
|
|
RUSTFLAGS = -C link-arg=--script=$(KERNEL_SYMBOLS_LINKER_SCRIPT) \
|
|
-C link-arg=--section-start=.rodata=$$($(GET_SYMBOLS_SECTION_VIRT_ADDR))
|
|
|
|
RUSTFLAGS_PEDANTIC = $(RUSTFLAGS) \
|
|
-D warnings \
|
|
-D missing_docs
|
|
|
|
COMPILER_ARGS = --target=$(TARGET) \
|
|
--release
|
|
|
|
RUSTC_CMD = cargo rustc $(COMPILER_ARGS) --manifest-path $(KERNEL_SYMBOLS_MANIFEST)
|
|
OBJCOPY_CMD = rust-objcopy \
|
|
--strip-all \
|
|
-O binary
|
|
|
|
EXEC_SYMBOLS_TOOL = ruby $(KERNEL_SYMBOLS_TOOL_PATH)/main.rb
|
|
|
|
##------------------------------------------------------------------------------
|
|
## Dockerization
|
|
##------------------------------------------------------------------------------
|
|
DOCKER_CMD = docker run -t --rm -v $(shell pwd):/work/tutorial -w /work/tutorial
|
|
|
|
# DOCKER_IMAGE defined in include file (see top of this file).
|
|
DOCKER_TOOLS = $(DOCKER_CMD) $(DOCKER_IMAGE)
|
|
|
|
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
## Targets
|
|
##--------------------------------------------------------------------------------------------------
|
|
.PHONY: all symbols measure_time_start measure_time_finish
|
|
|
|
all: measure_time_start symbols measure_time_finish
|
|
|
|
symbols:
|
|
@cp $(KERNEL_SYMBOLS_INPUT_ELF) $(KERNEL_SYMBOLS_OUTPUT_ELF)
|
|
|
|
@$(DOCKER_TOOLS) $(EXEC_SYMBOLS_TOOL) --gen_symbols $(KERNEL_SYMBOLS_OUTPUT_ELF) \
|
|
$(KERNEL_SYMBOLS_RS)
|
|
|
|
$(call color_progress_prefix, "Demangling")
|
|
@echo Symbol names
|
|
@cat $(KERNEL_SYMBOLS_RS) | rustfilt > $(KERNEL_SYMBOLS_DEMANGLED_RS)
|
|
|
|
@RUSTFLAGS="$(RUSTFLAGS_PEDANTIC)" $(RUSTC_CMD)
|
|
|
|
$(call color_progress_prefix, "Stripping")
|
|
@echo Symbols ELF file
|
|
@$(OBJCOPY_CMD) $(KERNEL_SYMBOLS_ELF) $(KERNEL_SYMBOLS_STRIPPED)
|
|
|
|
@$(DOCKER_TOOLS) $(EXEC_SYMBOLS_TOOL) --patch_data $(KERNEL_SYMBOLS_OUTPUT_ELF) \
|
|
$(KERNEL_SYMBOLS_STRIPPED)
|
|
|
|
# Note: The following is the only _trivial_ way I could think of that works out of the box on both
|
|
# Linux and macOS. Since macOS does not have the %N nanosecond format string option, the
|
|
# resolution is restricted to whole seconds.
|
|
measure_time_start:
|
|
@date +%s > /tmp/kernel_symbols_start.date
|
|
|
|
measure_time_finish:
|
|
@date +%s > /tmp/kernel_symbols_end.date
|
|
|
|
$(call color_progress_prefix, "Finished")
|
|
@echo "in $$((`cat /tmp/kernel_symbols_end.date` - `cat /tmp/kernel_symbols_start.date`)).0s"
|
|
|
|
@rm /tmp/kernel_symbols_end.date /tmp/kernel_symbols_start.date
|