Skip to content
Snippets Groups Projects
Commit d772dc01 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

boards: x86-multiboot-common: use dlcache for downloading toolchain

parent c1cd2575
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,12 @@ endif ...@@ -5,11 +5,12 @@ endif
ifneq (0, $(shell test -e "$(NEWLIB_BASE)/lib/libc.a" && echo $$?)) ifneq (0, $(shell test -e "$(NEWLIB_BASE)/lib/libc.a" && echo $$?))
NEWLIB_PRECOMPILED_NAME := i586-newlib_2.2.0.20150623_tlsf-3337.tar.bz2 NEWLIB_PRECOMPILED_NAME := i586-newlib_2.2.0.20150623_tlsf-3337.tar.bz2
NEWLIB_PRECOMPILED := http://download.riot-os.org/$(NEWLIB_PRECOMPILED_NAME) NEWLIB_PRECOMPILED := http://download.riot-os.org/$(NEWLIB_PRECOMPILED_NAME)
NEWLIB_PRECOMPILED_MD5 := 8090a768cf0294b259fe7ad904d085c7
$(warning Precompiled newlib is missing in $(NEWLIB_BASE)) $(warning Precompiled newlib is missing in $(NEWLIB_BASE))
$(warning Downloading from $(NEWLIB_PRECOMPILED)) $(warning Downloading from $(NEWLIB_PRECOMPILED))
$(shell cd $(RIOTBASE) && $(DOWNLOAD_TO_STDOUT) "$(NEWLIB_PRECOMPILED)" | tar xj) $(shell cd $(RIOTBASE) && $(DLCACHE) "$(NEWLIB_PRECOMPILED)" 8090a768cf0294b259fe7ad904d085c7 - | tar xj)
endif endif
ifeq (,$(BUILD_INCLUDE_BASE)) ifeq (,$(BUILD_INCLUDE_BASE))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment