aboutsummaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authordeadprogram <[email protected]>2024-08-16 16:11:31 +0200
committerRon Evans <[email protected]>2024-09-08 15:09:17 +0200
commit2e47a9c5cdd38025bda8b6a21b356b564111bf3a (patch)
tree41da48b2f54c20bdc3ef3c96c652f6bbac473d9f /GNUmakefile
parente13d4ba3d0d8851b6a3b73e791d2303992b4d3d5 (diff)
downloadtinygo-2e47a9c5cdd38025bda8b6a21b356b564111bf3a.tar.gz
tinygo-2e47a9c5cdd38025bda8b6a21b356b564111bf3a.zip
gen-device: switch generator for Renesas code to use main cmsis-svd repo
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index ed1855c83..7333a6ebc 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -185,7 +185,7 @@ fmt-check: ## Warn if any source needs reformatting
@unformatted=$$(gofmt -l $(FMT_PATHS)); [ -z "$$unformatted" ] && exit 0; echo "Unformatted:"; for fn in $$unformatted; do echo " $$fn"; done; exit 1
-gen-device: gen-device-avr gen-device-esp gen-device-nrf gen-device-sam gen-device-sifive gen-device-kendryte gen-device-nxp gen-device-rp ## Generate microcontroller-specific sources
+gen-device: gen-device-avr gen-device-esp gen-device-nrf gen-device-sam gen-device-sifive gen-device-kendryte gen-device-nxp gen-device-rp gen-device-renesas ## Generate microcontroller-specific sources
ifneq ($(STM32), 0)
gen-device: gen-device-stm32
endif
@@ -234,7 +234,7 @@ gen-device-rp: build/gen-device-svd
GO111MODULE=off $(GO) fmt ./src/device/rp
gen-device-renesas: build/gen-device-svd
- ./build/gen-device-svd -source=https://github.com/tinygo-org/renesas-svd lib/renesas-svd/ src/device/renesas/
+ ./build/gen-device-svd -source=https://github.com/cmsis-svd/cmsis-svd-data/tree/master/data/Renesas lib/cmsis-svd/data/Renesas/ src/device/renesas/
GO111MODULE=off $(GO) fmt ./src/device/renesas
$(LLVM_PROJECTDIR)/llvm: