[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:04:55 PDT 2025


https://github.com/RossComputerGuy updated https://github.com/llvm/llvm-project/pull/131499

>From f85f77cbc0a5218f000c8857f990b7d9a070e0d1 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..4b7270245315c 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