[libc-commits] [libc] [libc][uefi] add crt1 (PR #132150)

Petr Hosek via libc-commits libc-commits at lists.llvm.org
Thu Mar 20 00:33:13 PDT 2025


================
@@ -0,0 +1,65 @@
+//===-- Implementation of crt for UEFI ----------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===--------------------------------------------------------------------===//
+
+#include "include/llvm-libc-macros/stdlib-macros.h"
+#include "include/llvm-libc-types/EFI_HANDLE.h"
+#include "include/llvm-libc-types/EFI_STATUS.h"
+#include "include/llvm-libc-types/EFI_SYSTEM_TABLE.h"
+#include "src/__support/macros/config.h"
+
+namespace LIBC_NAMESPACE_DECL {
+
+using InitCallback = void(void);
+using FiniCallback = void(void);
+extern "C" InitCallback *__CTOR_LIST__[];
+extern "C" FiniCallback *__DTOR_LIST__[];
----------------
petrhosek wrote:

Can you point me to documentation for these symbols? I couldn't find anything in the documentation for Microsoft's `link`.

https://github.com/llvm/llvm-project/pull/132150


More information about the libc-commits mailing list