8000 Migrate build to be entirely cargo-based, with make as integration tool by bradjc · Pull Request #4075 · tock/tock · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Migrate build to be entirely cargo-based, with make as integration tool #4075

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
bf9e88a
Start compile via .cargo/config.toml
alevy Jun 16, 2024
76b58de
Rebase with 4382e5572340d1b0486fa1df3e05f696e4fafa4b
alevy Jun 17, 2024
26c6fbf
sma_q3 cargo config and probe-rs
alevy Jun 17, 2024
8382753
.cargo/ for all boards
alevy Jun 17, 2024
a75c5d2
Merge .cargo/config.toml from top-level and boards
alevy Jun 28, 2024
02ec372
Add licenses to .cargo/config.toml files
alevy Jun 29, 2024
aaa25f7
Remove extraneous RUSTFLAGS from Makefile.common
alevy Jun 29, 2024
8877c4d
Dedup opentitan .cargo/config.toml
alevy Jun 29, 2024
786bfb5
LTO in debug mode too!
alevy Jun 29, 2024
6d314b8
boards: cargo config: add cargo config folder
bradjc Jul 9, 2024
8000
14b3d39
boards: add includes in cargo/config.toml
bradjc Jul 9, 2024
9b61d88
boards: config.toml: include optimize_for_size
bradjc Jul 9, 2024
19c5e9e
boards: config: include riscv include
bradjc Jul 9, 2024
190d4fb
boards: hail: manually include flags due to stable
bradjc Jul 9, 2024
e2f372c
boards: build.rs: comment on -T flag
bradjc Jul 9, 2024
5ecb199
boards: tock_flags.toml: add link to mangling default
bradjc Jul 9, 2024
8e711f3
boards: hail: config comment
bradjc Jul 10, 2024
f0de849
boards: cargo: create virtual-function-elimination
bradjc Jul 10, 2024
2c5321b
boards: cargo: add panic-abort-tests
bradjc Jul 10, 2024
24a511a
boards: build.rs: comment the -L flag
bradjc Jul 10, 2024
83e2084
Move rustdoc flags to cargo config
alevy Jul 12, 2024
60fdc34
Move nordic .cargo/ to each board
alevy Jul 12, 2024
4366e06
Update boards/cargo/tock_flags.toml
alevy Jul 15, 2024
ec9c4d3
Move cargo/.configs to board folders
alevy Jul 15, 2024
01b36bb
Remove RUSTFLAGS et al from Makefile.common rules
alevy Jul 15, 2024
9041fdf
boards: make: remove bloat target
bradjc Jul 16, 2024
b7316ab
boards: use trim-paths rather than remap-prefix
bradjc Jul 9, 2024
836e1d3
boards: make: autodiscover TARGET and PLATFORM
bradjc Jul 16, 2024
76f7ac0
boards: make: no need to create target dir
bradjc Jul 16, 2024
bcce85a
boards: make: set sentinel in config.toml
bradjc Jul 16, 2024
19fbd07
boards: make: add back verbose to cargo build
bradjc Jul 17, 2024
e3b44e4
boards: re-add RUST_FLAGS to build using cargo
alevy Jul 21, 2024
a7190c4
boards: remove CARGO_FLAGS in Makefile.common
alevy Jul 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ edition = "2021"

[profile.dev]
panic = "abort"
lto = false
lto = true
opt-level = "z"
debug = true

Expand Down
209 changes: 28 additions & 181 deletions boards/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ MAKEFILE_COMMON_PATH := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
TOCK_ROOT_DIRECTORY := $(dir $(abspath $(MAKEFILE_COMMON_PATH)))

# The path to the root of the rust installation used for this build.
# Useful for remapping paths and for finding already-installed llvm tools.
# Useful for finding already-installed llvm tools.
RUSTC_SYSROOT := "$(shell rustc --print sysroot)"

# Common defaults that specific boards can override, but likely do not need to.
Expand All @@ -39,96 +39,31 @@ else
RUSTUP ?= true
endif

# Default location of target directory (relative to board makefile) passed to
# cargo `--target_dir`.
# Default location of target directory (relative to board makefile).
TARGET_DIRECTORY ?= $(TOCK_ROOT_DIRECTORY)target/

# RUSTC_FLAGS allows boards to define board-specific options.
# This will hopefully move into Cargo.toml (or Cargo.toml.local) eventually.
#
# - `-Tlayout.ld`: Use the linker script `layout.ld` all boards must provide.
# - `linker=rust-lld`: Tell rustc to use the LLVM linker. This avoids needing
# GCC as a dependency to build the kernel.
# - `linker-flavor=ld.lld`: Use the LLVM lld executable with the `-flavor gnu`
# flag.
# - `relocation-model=static`: See https://github.com/tock/tock/pull/2853
# - `-nmagic`: lld by default uses a default page size to align program
# sections. Tock expects that program sections are set back-to-back. `-nmagic`
# instructs the linker to not page-align sections.
# - `-icf=all`: Identical Code Folding (ICF) set to all. This tells the linker
# to be more aggressive about removing duplicate code. The default is `safe`,
# and the downside to `all` is that different functions in the code can end up
# with the same address in the binary. However, it can save a fair bit of code
# size.
# - `-C symbol-mangling-version=v0`: Opt-in to Rust v0 symbol mangling scheme.
# See https://github.com/rust-lang/rust/issues/60705 and
# https://github.com/tock/tock/issues/3529.
RUSTC_FLAGS ?= \
-C link-arg=-Tlayout.ld \
-C linker=rust-lld \
-C linker-flavor=ld.lld \
-C relocation-model=static \
-C link-arg=-nmagic \
-C link-arg=-icf=all \
-C symbol-mangling-version=v0 \

# RISC-V-specific flags.
ifneq ($(findstring riscv32i, $(TARGET)),)
# NOTE: This flag causes kernel panics on some ARM cores. Since the size
# benefit is almost exclusively for RISC-V, we only apply it for those
# targets.
RUSTC_FLAGS += -C force-frame-pointers=no
# Ensure relocations generated is eligible for linker relaxation.
# This provide huge space savings.
RUSTC_FLAGS += -C target-feature=+relax
endif

# RUSTC_FLAGS_TOCK by default extends RUSTC_FLAGS with options that are global
# to all Tock boards.
#
# We use `remap-path-prefix` to remove user-specific filepath strings for error
# reporting from appearing in the generated binary. The first line is used for
# remapping the tock directory, and the second line is for remapping paths to
# the source code of the core library, which end up in the binary as a result of
# our use of `-Zbuild-std=core`.
RUSTC_FLAGS_TOCK ?= \
$(RUSTC_FLAGS) \
--remap-path-prefix=$(TOCK_ROOT_DIRECTORY)= \
--remap-path-prefix=$(RUSTC_SYSROOT)/lib/rustlib/src/rust/library/core=/core/

# Disallow warnings only for continuous integration builds. Disallowing them
# here using the `RUSTC_FLAGS_TOCK` variable ensures that warnings during
# testing won't prevent compilation from succeeding.
ifeq ($(NOWARNINGS),true)
RUSTC_FLAGS_TOCK += -D warnings
endif
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To clarify, cargo does not do this automatically, rustup does it iff the target is included in rust-toolschain.toml. I'm not a fan of any of this setup being in the Makefile to begin with (we needed to add a hack to be able to get around this on NixOS et al where this totally doesn't work), but I don't see this as a related change to this PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair enough. Bad commit message on my part. I'm happy to rename this PR "refactor build system and review makefile".

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not important, I was just noting as I read through.


# The following flags should only be passed to the board's binary crate, but
# not to any of its dependencies (the kernel, capsules, chips, etc.). The
# dependencies wouldn't use it, but because the link path is different for each
# board, Cargo wouldn't be able to cache builds of the dependencies.
#
# Indeed, as far as Cargo is concerned, building the kernel with
# `-C link-arg=-L/tock/boards/imix` is different than building the kernel with
# `-C link-arg=-L/tock/boards/hail`, so Cargo would have to rebuild the kernel
# for each board instead of caching it per board (even if in reality the same
# kernel is built because the link-arg isn't used by the kernel).
#
# Ultimately, this should move to the Cargo.toml, for example when
# https://github.com/rust-lang/cargo/pull/7811 is merged into Cargo.
#
# The difference between `RUSTC_FLAGS_TOCK` and `RUSTC_FLAGS_FOR_BIN` is that
# the former is forwarded to all the dependencies (being passed to cargo via
# the `RUSTFLAGS` environment variable), whereas the latter is only applied to
# the final binary crate (being passed as parameter to `cargo rustc`).
RUSTC_FLAGS_FOR_BIN ?= \
-C link-arg=-L$(abspath .) \

# http://stackoverflow.com/questions/10858261/abort-makefile-if-variable-not-set
# Check that given variables are set and all have non-empty values, print an
# error otherwise.
check_defined = $(strip $(foreach 1,$1,$(if $(value $1),,$(error Undefined variable "$1"))))


# Get the name of the package by hacking the `cargo tree` command. This prints
# the local package name first so we can use that to get the package name. Ex:
#
# wm1110dev v0.1.0 (/Users/bradjc/git/tock/boards/wm1110dev)
# ├── capsules-core v0.1.0 (/Users/bradjc/git/tock/capsules/core)
# │ ├── enum_primitive v0.1.0 (/Users/bradjc/git/tock/libraries/enum_primitive)
PLATFORM := $(firstword $(shell $(CARGO) tree))
# Set `TARGET` if not already defined. Note: this only works on nightly.
ifeq ($(TARGET),)
# Get the specified target using the unstable `cargo config get` command.
TARGET_QUOTES := $(shell $(CARGO) config get --format json-value build.target)
# Remove the quotes from around the target name.
TARGET := $(patsubst "%",%,$(TARGET_QUOTES))
endif


# Check that we know the basics of what we are compiling for.
# - `PLATFORM`: The name of the board that the kernel is being compiled for.
# - `TARGET` : The Rust target architecture the kernel is being compiled for.
Expand Down Expand Up @@ -222,42 +157,6 @@ OBJDUMP ?= $(TOOLCHAIN)-objdump
# removing it, we prevent the kernel binary from overwriting applications.
OBJCOPY_FLAGS ?= --strip-sections --strip-all --remove-section .apps

# This make variable allows board-specific Makefiles to pass down options to
# the Cargo build command. For example, in boards/<custom_board>/Makefile:
# `CARGO_FLAGS += --features=foo` would pass feature `foo` to the top level
# Cargo.toml.
CARGO_FLAGS ?=

# Add default flags to cargo. Boards can add additional options in
# `CARGO_FLAGS`.
CARGO_FLAGS_TOCK ?= \
$(VERBOSE_FLAGS) \
--target=$(TARGET) \
--package $(PLATFORM) \
--target-dir=$(TARGET_DIRECTORY) $(CARGO_FLAGS)

# Add default flags to rustdoc.
RUSTDOC_FLAGS_TOCK ?= -D warnings --document-private-items

# Add flags if we are compiling on nightly. If we are on stable, disallow
# features.
#
# - `-Z build-std=core,compiler_builtins`: Build the std library from source
# using our optimization settings. This leads to significantly smaller binary
# sizes, and makes debugging easier since debug information for the core
# library is included in the resulting .elf file. See
# https://github.com/tock/tock/pull/2847 for more details.
# - `optimize_for_size`: Sets a feature flag in the core library that aims to
# produce smaller implementations for certain algorithms. See
# https://github.com/rust-lang/rust/pull/125011 for more details.
# - `--document-hidden-items`: Document internal interfaces when building
# rustdoc API documentation.
ifneq ($(USE_STABLE_RUST),1)
CARGO_FLAGS_TOCK += \
-Z build-std=core,compiler_builtins \
-Z build-std-features="core/optimize_for_size"
endif

# Set the default flags we need for objdump to get a .lst file.
OBJDUMP_FLAGS ?= --disassemble-all --source --section-headers --demangle

Expand All @@ -269,22 +168,10 @@ ifneq (,$(findstring thumb,$(TARGET)))
OBJDUMP_FLAGS += --arch-name=thumb
endif

# Additional flags that can be passed to cargo bloat via an environment
# variable. Allows users to pass arbitrary flags supported by cargo bloat to
# customize the output. By default, pass an empty string.
CARGO_BLOAT_FLAGS ?=

# Additional flags that can be passed to print_tock_memory_usage.py via an
# environment variable. By default, pass an empty string.
PTMU_ARGS ?=

# `cargo bloat` does not support `-Z build-std`, so we must remove it from cargo
# flags. See https://github.com/RazrFalcon/cargo-bloat/issues/62.
# As we aren't building the library we also remove the
# `-Z build-std-features="core/optimize_for_size"` argument.
CARGO_FLAGS_TOCK_NO_BUILD_STD := $(filter-out -Z build-std=core,$(CARGO_FLAGS_TOCK))
CARGO_FLAGS_TOCK_NO_BUILD_STD := $(filter-out -Z build-std-features="core/optimize_for_size",$(CARGO_FLAGS_TOCK))

# Check whether the system already has a sha256sum or shasum application
# present. If not, use the custom shipped one.
ifeq (, $(shell sha256sum --version 2>/dev/null))
Expand All @@ -300,18 +187,9 @@ else
SHA256SUM := sha256sum
endif

# virtual-function-elimination reduces the size of binaries, but is still
# experimental and has some possible miscompilation issues. This is only enabled
# for some boards by default, but is exposed via the `VFUNC_ELIM=1` option.
#
# For details on virtual-function-elimination see: https://github.com/rust-lang/rust/pull/96285
# See https://github.com/rust-lang/rust/issues/68262 for general tracking
ifneq ($(VFUNC_ELIM),)
RUSTC_FLAGS += -C lto -Z virtual-function-elimination
endif

# Dump configuration for verbose builds
ifeq ($(VERBOSE_MODE),1)
RUST_FLAGS = $(shell $(CARGO) -Zunstable-options config get build.rustflags --format json-value 2> /dev/null || echo "Listing Rust flags only accessible on nightly cargo")
$(info )
$(info *******************************************************)
$(info TOCK KERNEL BUILD SYSTEM -- VERBOSE BUILD CONFIGURATION)
Expand All @@ -323,16 +201,11 @@ ifeq ($(VERBOSE_MODE),1)
$(info PLATFORM = $(PLATFORM))
$(info TARGET = $(TARGET))
$(info TOCK_KERNEL_VERSION = $(TOCK_KERNEL_VERSION))
$(info RUSTC_FLAGS = $(RUSTC_FLAGS))
$(info RUSTC_FLAGS_TOCK = $(RUSTC_FLAGS_TOCK))
$(info RUSTFLAGS = $(RUST_FLAGS))
$(info MAKEFLAGS = $(MAKEFLAGS))
$(info OBJDUMP_FLAGS = $(OBJDUMP_FLAGS))
$(info OBJCOPY_FLAGS = $(OBJCOPY_FLAGS))
$(info CARGO_FLAGS = $(CARGO_FLAGS))
$(info CARGO_FLAGS_TOCK = $(CARGO_FLAGS_TOCK))
$(info CARGO_FLAGS_TOCK_NO_BUILD_STD = $(CARGO_FLAGS_TOCK_NO_BUILD_STD))
$(info SIZE_FLAGS = $(SIZE_FLAGS))
$(info CARGO_BLOAT_FLAGS = $(CARGO_BLOAT_FLAGS))
$(info )
$(info TOOLCHAIN = $(TOOLCHAIN))
$(info SIZE = $(SIZE))
Expand Down Expand Up @@ -360,12 +233,12 @@ all: release
# binary. This makes checking for Rust errors much faster.
.PHONY: check
check:
$(Q)$(CARGO) check $(VERBOSE_FLAGS) $(CARGO_FLAGS_TOCK)
$(Q)$(CARGO) check $(VERBOSE_FLAGS)


.PHONY: clean
clean::
$(Q)$(CARGO) clean $(VERBOSE_FLAGS) --target-dir=$(TARGET_DIRECTORY)
$(Q)$(CARGO) clean $(VERBOSE_FLAGS)

.PHONY: release
release: $(TARGET_PATH)/release/$(PLATFORM).bin
Expand All @@ -377,8 +250,8 @@ debug: $(TARGET_PATH)/debug/$(PLATFORM).bin
debug-lst: $(TARGET_PATH)/debug/$(PLATFORM).lst

.PHONY: doc
doc: | target
$(Q)RUSTDOCFLAGS='$(RUSTDOC_FLAGS_TOCK)' $(CARGO) --color=always doc $(VERBOSE_FLAGS) --release --package $(PLATFORM)
doc:
$(Q)$(CARGO) --color=always doc $(VERBOSE_FLAGS) --release --package $(PLATFORM)


.PHONY: lst
Expand All @@ -390,33 +263,10 @@ lst: $(TARGET_PATH)/release/$(PLATFORM).lst
show-target:
$(info $(TARGET))

# This rule is a copy of the rule used to build the release target, but `cargo
# rustc` has been replaced with `cargo bloat`. `cargo bloat` replicates the
# interface of `cargo build`, rather than `cargo rustc`, so we need to move
# `RUSTC_FLAGS_FOR_BIN` into the `RUSTFLAGS` environment variable. This only
# means that cargo cannot reuse built dependencies built using `cargo bloat`.
# See the discussion on `RUSTC_FLAGS_FOR_BIN` above for additional details. To
# pass additional flags to `cargo bloat`, populate the CARGO_BLOAT_FLAGS
# environment variable, e.g. run `CARGO_BLOAT_FLAGS=--crates make cargobloat`
.PHONY: cargobloat
cargobloat:
$(Q)$(CARGO) install cargo-bloat > /dev/null 2>&1 || echo 'Error: Failed to install cargo-bloat'
$(Q)RUSTFLAGS="$(RUSTC_FLAGS_TOCK) $(RUSTC_FLAGS_FOR_BIN)" CARGO_FLAGS="-Z build-std=core" $(CARGO) bloat $(CARGO_FLAGS_TOCK_NO_BUILD_STD) --bin $(PLATFORM) --release $(CARGO_BLOAT_FLAGS)

# To pass additional flags to `cargo cargobloatnoinline`, populate the
# CARGO_BLOAT_FLAGS environment variable, e.g. run `CARGO_BLOAT_FLAGS=--crates
# make cargobloatnoinline`
.PHONY: cargobloatnoinline
cargobloatnoinline:
$(Q)$(CARGO) install cargo-bloat > \dev\null 2>&1 || echo 'Error: Failed to install cargo-bloat'
$(Q)RUSTFLAGS="$(RUSTC_FLAGS_TOCK) -C inline-threshold=0 $(RUSTC_FLAGS_FOR_BIN)" $(CARGO) bloat $(CARGO_FLAGS_TOCK) --bin $(PLATFORM) --release $(CARGO_BLOAT_FLAGS)

.PHONY: stack-analysis
#stack_analysis: RUSTC_FLAGS_TOCK += -Z emit-stack-sizes
stack-analysis:
stack-analysis: $(TARGET_PATH)/release/$(PLATFORM)
@$ echo $(PLATFORM)
@$ echo ----------------------
$(Q)$(MAKE) release RUSTC_FLAGS="$(RUSTC_FLAGS) -Z emit-stack-sizes" $(DEVNULL) 2>&1
$(Q)$(TOCK_ROOT_DIRECTORY)/tools/stack_analysis.sh $(TARGET_PATH)/release/$(PLATFORM).elf

# Run the `print_tock_memory_usage.py` script for this board.
Expand All @@ -426,9 +276,6 @@ memory: $(TARGET_PATH)/release/$(PLATFORM).elf

# Support rules

target:
@mkdir -p $(TARGET_PATH)

# Cargo outputs an elf file (just without a file extension)
%.elf: %
$(Q)cp $< $@
Expand All @@ -452,10 +299,10 @@ $(TOCK_ROOT_DIRECTORY)tools/sha256sum/target/debug/sha256sum:

.PHONY: $(TARGET_PATH)/release/$(PLATFORM)
$(TARGET_PATH)/release/$(PLATFORM):
$(Q)RUSTFLAGS="$(RUSTC_FLAGS_TOCK)" $(CARGO) rustc $(CARGO_FLAGS_TOCK) --bin $(PLATFORM) --release -- $(RUSTC_FLAGS_FOR_BIN)
$(Q)$(CARGO) rustc $(VERBOSE_FLAGS) --bin $(PLATFORM) --release
$(Q)$(SIZE) $(SIZE_FLAGS) $@

.PHONY: $(TARGET_PATH)/debug/$(PLATFORM)
$(TARGET_PATH)/debug/$(PLATFORM):
$(Q)RUSTFLAGS="$(RUSTC_FLAGS_TOCK)" $(CARGO) rustc $(CARGO_FLAGS_TOCK) --bin $(PLATFORM) -- $(RUSTC_FLAGS_FOR_BIN)
$(Q)$(CARGO) build $(VERBOSE_FLAGS) --bin $(PLATFORM)
$(Q)$(SIZE) $(SIZE_FLAGS) $@
14 changes: 14 additions & 0 deletions boards/acd52832/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Licensed under the Apache License, Version 2.0 or the MIT License.
# SPDX-License-Identifier: Apache-2.0 OR MIT
# Copyright Tock Contributors 2024.

include = [
"../../cargo/tock_flags.toml",
"../../cargo/unstable_flags.toml",
]

[build]
target = "thumbv7em-none-eabi"

[unstable]
config-include = true
3 changes: 0 additions & 3 deletions boards/acd52832/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

# Makefile for building the tock kernel for the nRF development kit

TARGET=thumbv7em-none-eabi
PLATFORM=acd52832

include ../Makefile.common

TOCKLOADER=tockloader
Expand Down
13 changes: 12 additions & 1 deletion boards/apollo3/lora_things_plus/.cargo/config.toml
10000
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Licensed under the Apache License, Version 2.0 or the MIT License.
# SPDX-License-Identifier: Apache-2.0 OR MIT
# Copyright Tock Contributors 2022.
# Copyright Tock Contributors 2024.

include = [
"../../../cargo/tock_flags.toml",
"../../../cargo/unstable_flags.toml",
]

[build]
target = "thumbv7em-none-eabi"

[target.'cfg(target_arch = "arm")']
runner = "./run.sh"

[unstable]
config-include = true
4 changes: 1 addition & 3 deletions boards/apollo3/lora_things_plus/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

# Makefile for building the tock kernel for the SparkFun LoRa Thing Plus - expLoRaBLE
#
TARGET=thumbv7em-none-eabi
PLATFORM=lora_things_plus

include ../../Makefile.common

Expand Down Expand Up @@ -49,4 +47,4 @@ test:
mkdir -p $(TOCK_ROOT_DIRECTORY)target/$(TARGET)/release/deps/
$(Q)cp layout.ld $(TOCK_ROOT_DIRECTORY)target/$(TARGET)/release/deps/
$(Q)cp ../../kernel_layout.ld $(TOCK_ROOT_DIRECTORY)target/$(TARGET)/
$(Q)RUSTFLAGS="$(RUSTC_FLAGS_TOCK)" OBJCOPY=${OBJCOPY} PORT=$(PORT) $(CARGO) test $(CARGO_FLAGS_TOCK_NO_BUILD_STD) $(NO_RUN) --bin $(PLATFORM) --release
$(Q)OBJCOPY=${OBJCOPY} PORT=$(PORT) $(CARGO) test $(NO_RUN) --bin $(PLATFORM) --release
13 changes: 12 additions & 1 deletion boards/apollo3/redboard_artemis_atp/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Licensed under the Apache License, Version 2.0 or the MIT License.
# SPDX-License-Identifier: Apache-2.0 OR MIT
# Copyright Tock Contributors 2022.
# Copyright Tock Contributors 2024.

include = [
"../../../cargo/tock_flags.toml",
"../../../cargo/unstable_flags.toml",
]

[build]
target = "thumbv7em-none-eabi"

[target.'cfg(target_arch = "arm")']
runner = "./run.sh"

[unstable]
config-include = true
Loading
Loading
0