commit | b14b9126c92c548574a38c3142f482d4c0e65529 | [log] [tgz] |
---|---|---|
author | Walter Erquinigo <walter@modular.com> | Thu Aug 29 18:41:01 2024 +0000 |
committer | walter erquinigo <walter@modular.com> | Fri Aug 30 16:30:00 2024 -0400 |
tree | 73f41a8cb1acfb9502acd4d492359b0705c24022 | |
parent | 3ef64f7ab5b8651eab500cd944984379fce5f639 [diff] |
[LLDB][DWARF] Add an option to silence unsupported DW_FORM warnings My build of LLDB is all the time loading targets with a version of libc++ that was built with gcc that uses the DW_FORM 0x1e that is not implemented by LLVM, and I doubt it'll ever implement it. It's used for some 128 bit encoding of numbers, which is just very weird. Because of this, LLDB is showing some warnings all the time for my users, so I'm adding a flag to control the enablement of this warning.
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.