This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Bash script to complile LLVM | |
| # @hoyhoy | |
| # 11/18/2025 | |
| # Installs to /opt/llvm-${LLVM_VERSION} i.e. /opt/llvm-21.1.6 | |
| # and then symbolically link /opt/llvm-latest to /opt/llvm-21.1.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/opt/bin/bash | |
| set -e | |
| BUILD_DIR=build-$(date +%Y-%m-%d-%I-%M-%S) | |
| # BUILD_DIR=build-2025-04-02-06-18-06 | |
| echo BUILD_DIR=${BUILD_DIR} | |
| # BUILD_DIR=build-2024-04-19-01-09-40 | |
| # mkdir ${BUILD_DIR} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake | |
| index ca45d7bd2af7..5b04aaf2c2c1 100644 | |
| --- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake | |
| +++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake | |
| @@ -21,7 +21,7 @@ if(APPLE) | |
| set(ARM64 arm64) | |
| set(ARM32 armv7 armv7s armv7k) | |
| set(ARM64_32 arm64_32) | |
| - set(X86_64 x86_64 x86_64h) | |
| + set(X86_64 x86_64) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| BUILD_DIR=build-$(date +%Y-%m-%d-%I-%M-%S) | |
| echo BUILD_DIR=${BUILD_DIR} | |
| # BUILD_DIR=build-2024-04-19-01-09-40 | |
| mkdir ${BUILD_DIR} | |
| LLVM_VERSION_MAJOR=19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ****************************************************************** | |
| // # @hoyhoy - 04/12/2024 | |
| // ****************************************************************** | |
| // ****************************************************************** | |
| // # CMakeLists.txt | |
| // ****************************************************************** | |
| // cmake_minimum_required(VERSION 3.29) | |
| // project(stdout_failure) | |
| // enable_testing() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {# █████████████████████████████████████████████████████████████████ #} | |
| {# █ @hoyhoy - 1/12/2024 █ #} | |
| {# █████████████████████████████████████████████████████████████████ #} | |
| {# █ Jinja2 Profile Example to Auto-generate Compiler Sanitizer █ #} | |
| {# █ Flags for a custom llvm build on MacOS and Linux █ #} | |
| {# █████████████████████████████████████████████████████████████████ #} | |
| {# ██████████████████████████████████████████████████████████████████ #} | |
| {# █ $CONAN_HOME/profiles/common/clang_local.j2 █ #} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Ad Hosts] | |
| # /usr/local/sbhosts/adhosts2privoxy.conf | |
| File=/etc/hosts | |
| Keep=1 | |
| Type=hosts | |
| Encoding=UTF-8 |