-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
275 additions
and
498 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
#!/bin/bash | ||
|
||
# Builds the Cortex-M4 version of ThreadX, then builds a Rust | ||
# application that links to it. | ||
# Builds the various ThreadX demo apps. | ||
|
||
# SPDX-FileCopyrightText: Copyright (c) 2023 Ferrous Systems | ||
# SPDX-FileCopyrightText: Copyright (c) 2024 Ferrous Systems | ||
# SPDX-License-Identifier: MIT OR Apache-2.0 | ||
|
||
set -euo pipefail | ||
|
||
pushd threadx | ||
cmake -Bbuild -GNinja -DCMAKE_TOOLCHAIN_FILE=cmake/cortex_m4.cmake . | ||
cmake --build ./build | ||
popd | ||
|
||
pushd demo-app | ||
cargo build --release | ||
popd |
Oops, something went wrong.