Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion Makefile.globals
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ ifndef TOP_DIR
endif
endif

ARM_BINPATH = /usr/bin
ifdef ARM_BINPATH
ARM_BINPATH := $(ARM_BINPATH)
else
ARM_BINPATH := /usr/bin
endif
ARM_ABI = none-eabi
CROSS_COMPILE = $(ARM_BINPATH)/arm-$(ARM_ABI)-
HOST_CC = gcc
Expand Down
22 changes: 22 additions & 0 deletions devbox.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": [
"gnumake@latest",
"gcc-arm-embedded@latest",
"zip@latest",
"python313@latest",
"python313Packages.setuptools@latest",
"python313Packages.distutils@latest",
"python313Packages.docutils@latest"
],
"shell": {
"init_hook": [
"export ARM_BINPATH=$PWD/.devbox/nix/profile/default/bin"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}
Loading