commit | 109bff1f1656e87933f7650f9a77dedeb0c8688c | [log] [tgz] |
---|---|---|
author | Joseph Huber <huberjn@outlook.com> | Sat Aug 31 07:07:42 2024 -0500 |
committer | GitHub <noreply@github.com> | Sat Aug 31 07:07:42 2024 -0500 |
tree | 138bc8103f73daef49437e00f302ee394f3f30d4 | |
parent | 9adf81182e68b60417eea21d39b91da231a15990 [diff] |
[libcxx] Do not include `langinfo.h` when using the LLVM C library (#106634) Summary: The `langinfo.h` header is a POSIX extension, so ideally we would be able to build the C++ library without it. Currently the LLVM C library doesn't support / provide it. This allows us to build the C++ library with locales enabled. We can either disable it here, or just provide stubs that do nothing as in https://github.com/llvm/llvm-project/pull/106620.
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.