commit | c04958381e90c32381ddabf1552d17c63cdd060b | [log] [tgz] |
---|---|---|
author | Andrew Rogers <andrurogerz@gmail.com> | Tue Apr 22 09:49:18 2025 -0700 |
committer | GitHub <noreply@github.com> | Tue Apr 22 09:49:18 2025 -0700 |
tree | 1381052ec05da2e9765d61717871d423a79c1707 | |
parent | ab4e181ea8a1b11546328cb71c330772b8720db7 [diff] |
[llvm] add LLVM_ABI_FRIEND macro for friend function decls (#136595) ## Purpose Introduce a new `LLVM_ABI_FRIEND` macro to `llvm/Support/Compiler.h` for annotating `friend` function declarations for DLL export. ## Overview 1. Add a new `LLVM_ABI_FRIEND` macro, which behaves identically to the existing `LLVM_ABI` macro on Windows and compiles to nothing on other platforms. 2. Update existing documentation to describe proper usage of the `LLVM_ABI_FRIEND` annotation. ## Background * MSVC issues a warning when it encounters a `friend` function declaration that does not match the DLL import/export annotation of the original function. * When compiling ELF and Mach-O shared libraries, `friend` function declarations with visibility annotations produce compilation errors (GCC) and warnings (Clang). * Additional context on the effort to annotate LLVM's public interface is in [this discourse](https://discourse.llvm.org/t/psa-annotating-llvm-public-interface/85307).
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.