diff options
author | Ayke van Laethem <[email protected]> | 2023-09-23 15:06:27 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-01-05 21:13:30 +0100 |
commit | 6984af43a08b7fa1c1020700c42ce8c417d1f542 (patch) | |
tree | 79e9b9bfe07c1d9a67913585a39ec17321715ce4 /GNUmakefile | |
parent | 81c56c3ab89fe0598361c00f03eb0498d2ea0924 (diff) | |
download | tinygo-6984af43a08b7fa1c1020700c42ce8c417d1f542.tar.gz tinygo-6984af43a08b7fa1c1020700c42ce8c417d1f542.zip |
all: statically link to LLVM 17 instead of LLVM 16
We can now finally do it, now that Espressif has updated their fork.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 730bd99f7..5241d5919 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -238,7 +238,7 @@ gen-device-renesas: build/gen-device-svd # Get LLVM sources. $(LLVM_PROJECTDIR)/llvm: - git clone -b xtensa_release_16.x --depth=1 https://github.com/espressif/llvm-project $(LLVM_PROJECTDIR) + git clone -b xtensa_release_17.0.1 --depth=1 https://github.com/espressif/llvm-project $(LLVM_PROJECTDIR) llvm-source: $(LLVM_PROJECTDIR)/llvm # Configure LLVM. |