From b4ce2bcfd9a06042ea079e2728a76624935571d5 Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 15 Oct 2024 16:41:26 +0200 Subject: [PATCH] fix dir --- README.md | 226 +----------------------------------------------------- build.ps1 | 2 +- build.sh | 2 +- 3 files changed, 5 insertions(+), 225 deletions(-) diff --git a/README.md b/README.md index 11556db..960908c 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,13 @@ Wasmer logo -

LLVM Custom Builds

+

wee8 Custom Builds

- + Build Status - + License

@@ -27,223 +27,3 @@
> Go along your path, this is a dangerous place. - -This repository contains a small `build.sh` (or `build.ps1` for Windows -PowerShell) script that builds LLVM. The version of LLVM is defined in the CI script. -The build is run by [Github -Actions](https://github.com/wasmerio/llvm-custom-builds/actions) on 4 -platforms: Linux (Ubuntu, amd64 and aarch64), Darwin (macOS), and Windows. -Builds are attached to [Github releases as -assets](https://github.com/wasmerio/llvm-custom-builds/releases). - -## Prebuilds - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LLVM versionArchitecturePlatformPackage
18amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
Darwindownload
riscv64Linuxdownload
16amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
riscv64Linuxdownload
15amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
riscv64Linuxdownload
14amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
13amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
12amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
11amd64Darwindownload
Linuxdownload
Windowsdownload
aarch64Linuxdownload
10amd64Darwindownload
Linuxdownload
Windowsdownload
aarchLinuxdownload
- -## LLVM configuration - -The following configuration is the one used for all actual prebuilds: - -| Options | Value | -|-|-| -| `clang` | enabled | -| `docs` | not included | -| `examples` | not included | -| `go_tests` | not included | -| `lld` | enabled | -| `optimized_tablegen` | enabled | -| `targets_to_build` | `X86` + `AArch64` | -| `terminfo` | disabled | -| `tests` | not included | -| `tools` | included | -| `utils` | not included | -| `zlib` | disabled | - -# License - -The entire project is under the MIT License. Please read [the `LICENSE` file][license]. - - -[license]: https://github.com/wasmerio/llvm-custom-builds/blob/master/LICENSE diff --git a/build.ps1 b/build.ps1 index 3257799..24512f8 100755 --- a/build.ps1 +++ b/build.ps1 @@ -39,7 +39,7 @@ $CMAKE_CXX_COMPILER="cl.exe" $CMAKE_C_COMPILER="cl.exe" $CMAKE_LINKER_TYPE="MSVC" -cmake -G "Ninja" -DCMAKE_BUILD_TYPE=MinSizeRel ../v8-cmake +cmake -G "Ninja" -DCMAKE_BUILD_TYPE=MinSizeRel # Showtime! cmake --build . --config Release --target wee8 diff --git a/build.sh b/build.sh index 76420fe..4236c7b 100755 --- a/build.sh +++ b/build.sh @@ -50,7 +50,7 @@ esac #esac # Run `cmake` to configure the project. -cmake -G "Ninja" -DCMAKE_BUILD_TYPE=MinSizeRel ../v8-cmake +cmake -G "Ninja" -DCMAKE_BUILD_TYPE=MinSizeRel .. # Showtime! cmake --build . --config MinSizeRel --target wee8