| commit | 1a32bcb4379fb90d2b764ac33b917de1431c6b16 | [log] [tgz] |
|---|---|---|
| author | cvspvr <csprv@outlook.com> | Thu Jul 24 20:35:42 2025 +1000 |
| committer | GitHub <noreply@github.com> | Thu Jul 24 11:35:42 2025 +0100 |
| tree | d7b6b8a9a58bdb0f21016d4b286ae93e98d7c01c | |
| parent | 94aa08a3b0e979e6977619064a27ca74bb15fcf6 [diff] |
[lldb] Allow building using Mingw-w64 on Windows. (#150398) I wasn't able to build lldb using Mingw-w64 on Windows without changing these 3 lines. It seems like `std::atomic<bool>` wasn't being found without `#include <atomic>` and `ceil` was defaulting to `std::ceil` instead of `std::chrono::ceil`, but I'm not smart enough to know the root cause. I'm sure I'm not the first people to try and compile lldb (and clang and lld) with Mingw-w64 and I don't know if something is wrong with my Mingw-w64, but my changes shouldn't have any affect if they aren't needed.
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.