use submodules for dependant toolchain
This commit is contained in:
parent
22cd89cd80
commit
4c79962487
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
linux-*.tar.xz
|
linux-*.tar.xz
|
||||||
work/
|
work/
|
||||||
toolchain
|
toolchain
|
||||||
riscv-tools/
|
|
||||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -7,3 +7,6 @@
|
|||||||
[submodule "riscv-pk"]
|
[submodule "riscv-pk"]
|
||||||
path = riscv-pk
|
path = riscv-pk
|
||||||
url = https://github.com/sifive/riscv-pk.git
|
url = https://github.com/sifive/riscv-pk.git
|
||||||
|
[submodule "riscv-gnu-toolchain"]
|
||||||
|
path = riscv-gnu-toolchain
|
||||||
|
url = https://github.com/riscv/riscv-gnu-toolchain.git
|
||||||
|
22
Makefile
22
Makefile
@ -6,6 +6,10 @@ srcdir := $(srcdir:/=)
|
|||||||
confdir := $(srcdir)/conf
|
confdir := $(srcdir)/conf
|
||||||
wrkdir := $(CURDIR)/work
|
wrkdir := $(CURDIR)/work
|
||||||
|
|
||||||
|
toolchain_srcdir := $(srcdir)/riscv-gnu-toolchain
|
||||||
|
toolchain_wrkdir := $(wrkdir)/riscv-gnu-toolchain
|
||||||
|
toolchain_dest := $(CURDIR)/toolchain
|
||||||
|
|
||||||
buildroot_srcdir := $(srcdir)/buildroot
|
buildroot_srcdir := $(srcdir)/buildroot
|
||||||
buildroot_wrkdir := $(wrkdir)/buildroot
|
buildroot_wrkdir := $(wrkdir)/buildroot
|
||||||
buildroot_tar := $(buildroot_wrkdir)/images/rootfs.tar
|
buildroot_tar := $(buildroot_wrkdir)/images/rootfs.tar
|
||||||
@ -37,18 +41,14 @@ all: $(hex)
|
|||||||
@echo Program it with: dd if=work/bbl.bin of=/dev/sd-your-card bs=1M
|
@echo Program it with: dd if=work/bbl.bin of=/dev/sd-your-card bs=1M
|
||||||
@echo
|
@echo
|
||||||
|
|
||||||
$(CURDIR)/toolchain/bin/$(target)-gcc:
|
$(toolchain_dest)/bin/$(target)-gcc: $(toolchain_srcdir)
|
||||||
@echo
|
mkdir -p $(toolchain_wrkdir)
|
||||||
@echo WARNING: You have no RISC-V toolchain installed.
|
cd $(toolchain_wrkdir); $(toolchain_srcdir)/configure --prefix=$(toolchain_dest)
|
||||||
@echo A toolchain will be downloaded and built in 5 seconds...
|
$(MAKE) -C $(toolchain_wrkdir) linux
|
||||||
@echo
|
|
||||||
@sleep 5
|
|
||||||
test -d riscv-tools || git clone -b freedom-unleashed-v0.1 --recursive https://github.com/ucb-bar/riscv-tools.git
|
|
||||||
cd riscv-tools; RISCV=$(RISCV) ./build.sh
|
|
||||||
|
|
||||||
$(buildroot_tar): $(buildroot_srcdir) $(RISCV)/bin/$(target)-gcc
|
$(buildroot_tar): $(buildroot_srcdir) $(RISCV)/bin/$(target)-gcc
|
||||||
$(MAKE) -C $< O=$(buildroot_wrkdir) riscv64_defconfig
|
$(MAKE) -C $< RISCV=$(RISCV) PATH=$(PATH) O=$(buildroot_wrkdir) riscv64_defconfig
|
||||||
$(MAKE) -C $< O=$(buildroot_wrkdir)
|
$(MAKE) -C $< RISCV=$(RISCV) PATH=$(PATH) O=$(buildroot_wrkdir)
|
||||||
|
|
||||||
.PHONY: buildroot-menuconfig
|
.PHONY: buildroot-menuconfig
|
||||||
buildroot-menuconfig: $(buildroot_srcdir)
|
buildroot-menuconfig: $(buildroot_srcdir)
|
||||||
@ -104,4 +104,4 @@ bbl: $(bbl)
|
|||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf -- $(wrkdir)
|
rm -rf -- $(wrkdir) $(toolchain_dest)
|
||||||
|
1
riscv-gnu-toolchain
Submodule
1
riscv-gnu-toolchain
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 2ffda4e4653a5b8d55b86e26019deea5aaa1bb96
|
2
riscv-pk
2
riscv-pk
@ -1 +1 @@
|
|||||||
Subproject commit f25234c1979f36ad25374f82b84a554e1fbc3158
|
Subproject commit 6eec87b472320eee37deafa88c1f9aebe7db749d
|
Loading…
Reference in New Issue
Block a user