[compiler-rt] [compiler-rt] allow building with uefi (PR #131499)
Tristan Ross via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 15 23:00:04 PDT 2025
https://github.com/RossComputerGuy created https://github.com/llvm/llvm-project/pull/131499
I'm trying to put together an LLVM built toolchain (including LLVM libc) targeting UEFI, currently I get an error saying "Unknown target". This PR enables compiling compiler-rt for UEFI.
>From 883aec7f34723db121f555b4ddabed9eb7c743b6 Mon Sep 17 00:00:00 2001
From: Tristan Ross <tristan.ross at midstall.com>
Date: Sat, 15 Mar 2025 22:58:34 -0700
Subject: [PATCH] [compiler-rt] allow building with uefi
---
compiler-rt/lib/builtins/int_lib.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler-rt/lib/builtins/int_lib.h b/compiler-rt/lib/builtins/int_lib.h
index f6c1b7cff4b99..ffc89de5f3162 100644
--- a/compiler-rt/lib/builtins/int_lib.h
+++ b/compiler-rt/lib/builtins/int_lib.h
@@ -49,7 +49,7 @@
#define SYMBOL_NAME(name) XSTR(__USER_LABEL_PREFIX__) #name
#if defined(__ELF__) || defined(__MINGW32__) || defined(__wasm__) || \
- defined(_AIX) || defined(__CYGWIN__)
+ defined(_AIX) || defined(__CYGWIN__) || defined(__UEFI__)
#define COMPILER_RT_ALIAS(name, aliasname) \
COMPILER_RT_ABI __typeof(name) aliasname __attribute__((__alias__(#name)));
#elif defined(__APPLE__)
More information about the llvm-commits
mailing list