| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
llvm-svn: 361062
|
|
|
|
|
|
|
|
| |
It fails to build on some bots.
Also revert follow-up r361055.
llvm-svn: 361059
|
|
|
|
| |
llvm-svn: 361055
|
|
|
|
| |
llvm-svn: 361053
|
|
|
|
| |
llvm-svn: 360829
|
|
|
|
| |
llvm-svn: 360766
|
|
|
|
| |
llvm-svn: 360764
|
|
|
|
|
|
| |
Differential Revision: https://reviews.llvm.org/D61819
llvm-svn: 360647
|
|
|
|
| |
llvm-svn: 360645
|
|
|
|
| |
llvm-svn: 360644
|
|
|
|
| |
llvm-svn: 360629
|
|
|
|
|
|
|
|
|
|
|
| |
The tablegen groups only need public_deps for inc files included
(possibly transitively) in other targets. Move inc files that are
internan to the MCTargetDesc libraries into regular deps.
Related to the changes that merged InstPrinter into MCTargetDesc
(360484, 360486 etc).
llvm-svn: 360600
|
|
|
|
| |
llvm-svn: 360597
|
|
|
|
| |
llvm-svn: 360553
|
|
|
|
| |
llvm-svn: 360551
|
|
|
|
| |
llvm-svn: 360549
|
|
|
|
| |
llvm-svn: 360508
|
|
|
|
| |
llvm-svn: 360507
|
|
|
|
| |
llvm-svn: 360492
|
|
|
|
| |
llvm-svn: 360491
|
|
|
|
| |
llvm-svn: 360489
|
|
|
|
| |
llvm-svn: 360343
|
|
|
|
| |
llvm-svn: 360253
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit appears to be breaking stage-2 builds on GreenDragon. The
OpenMP wrappers for cmath and math.h are copied into the root of the
resource directory and cause a cyclic dependency in module 'Darwin':
Darwin -> std -> Darwin. This blows up when CMake is testing for modules
support and breaks all stage 2 module builds, including the ThinLTO bot
and all LLDB bots.
CMake Error at cmake/modules/HandleLLVMOptions.cmake:497 (message):
LLVM_ENABLE_MODULES is not supported by this compiler
llvm-svn: 360192
|
|
|
|
| |
llvm-svn: 360141
|
|
|
|
| |
llvm-svn: 360140
|
|
|
|
| |
llvm-svn: 360074
|
|
|
|
| |
llvm-svn: 360049
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
defining them
When builing the hermetic static library, the compiler switch
-fvisibility-global-new-delete-hidden is necessary to get the new and
delete operator definitions made correctly. However, when those
definitions are not included in the library, then this switch does harm.
With lld (though not all linkers) setting STV_HIDDEN on SHN_UNDEF
symbols makes it an error to leave them undefined or defined via dynamic
linking that should generate PLTs for -shared linking (lld makes this a
hard error even without -z defs). Though leaving the symbols undefined
would usually work in practice if the linker were to allow it (and the
user didn't pass -z defs), this actually indicates a real problem that
could bite some target configurations more subtly at runtime. For
example, x86-32 ELF -fpic code generation uses hidden visibility on
declarations in the caller's scope as a signal that the call will never
be resolved to a PLT entry and so doesn't have to meet the special ABI
requirements for PLT calls (setting %ebx). Since these functions might
actually be resolved to PLT entries at link time (we don't know what the
user is linking in when the hermetic library doesn't provide all the
symbols itself), it's not safe for the compiler to treat their
declarations at call sites as having hidden visibility.
Differential Revision: https://reviews.llvm.org/D61572
llvm-svn: 360004
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When builing the hermetic static library, the compiler switch
-fvisibility-global-new-delete-hidden is necessary to get the new and
delete operator definitions made correctly. However, when those
definitions are not included in the library, then this switch does harm.
With lld (though not all linkers) setting STV_HIDDEN on SHN_UNDEF
symbols makes it an error to leave them undefined or defined via dynamic
linking that should generate PLTs for -shared linking (lld makes this a
hard error even without -z defs). Though leaving the symbols undefined
would usually work in practice if the linker were to allow it (and the
user didn't pass -z defs), this actually indicates a real problem that
could bite some target configurations more subtly at runtime. For
example, x86-32 ELF -fpic code generation uses hidden visibility on
declarations in the caller's scope as a signal that the call will never
be resolved to a PLT entry and so doesn't have to meet the special ABI
requirements for PLT calls (setting %ebx). Since these functions might
actually be resolved to PLT entries at link time (we don't know what the
user is linking in when the hermetic library doesn't provide all the
symbols itself), it's not safe for the compiler to treat their
declarations at call sites as having hidden visibility.
Differential Revision: https://reviews.llvm.org/D61571
llvm-svn: 360003
|
|
|
|
| |
llvm-svn: 359888
|
|
|
|
|
|
|
|
| |
This was omitted in r359805.
Differential Revision: https://reviews.llvm.org/D61462
llvm-svn: 359828
|
|
|
|
|
|
| |
This reflects changes made in r359763.
llvm-svn: 359825
|
|
|
|
|
|
| |
This was omitted in r359806 but is already referenced in the GN build.
llvm-svn: 359815
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change introduces support for building libc++. The library
build should be complete, but not all CMake options have been
replicated in GN. We also don't support tests yet.
We only support two stage build at the moment.
Differential Revision: https://reviews.llvm.org/D61143
llvm-svn: 359806
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change introduces support for building libcxxabi. The library
build should be complete, but not all CMake options have been
replicated in GN. We also don't support tests yet.
We only support two stage build at the moment.
Differential Revision: https://reviews.llvm.org/D60372
llvm-svn: 359805
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change introduces support for building libuwind. The library
build should be complete, but not all CMake options have been
replicated in GN. We also don't support tests yet.
We only support two stage build at the moment.
Differential Revision: https://reviews.llvm.org/D60370
llvm-svn: 359804
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Tooling tests do have a lit.local.cfg with
if not config.root.clang_staticanalyzer:
config.unsupported = True
so what's wrong isn't the missing dep, but that lit prints a warning for
the binary missing. This will need a different kind of fix.
llvm-svn: 359739
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
check-clang (the target that runs all clang tests) used to
only depend on clang-check (a binary like clang-tidy,
clang-refactor, etc) if the static analyzer is enabled.
However, several lit tests call clang-check unconditionally,
so always depend on it.
Fixes a "could not find clang-check" lit warning in clean builds with
the static analyzer disabled.
Also sort the deps in the CMake file and put just one dep on each line.
Differential Revision: https://reviews.llvm.org/D61324
llvm-svn: 359717
|
|
|
|
| |
llvm-svn: 359637
|
|
|
|
| |
llvm-svn: 359635
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
r359527 already merged some of that to the GN build,
but it was missing some bits as well.
The check-clangd target works (at least for now) differently than all
the other check-foo targets, see https://reviews.llvm.org/D61187
For that reason, there's no gni file and the generated lit configs are
not (yet?) added to llvm-lit/BUILD.gn.
llvm-svn: 359570
|
|
|
|
| |
llvm-svn: 359562
|
|
|
|
| |
llvm-svn: 359527
|
|
|
|
| |
llvm-svn: 359514
|
|
|
|
| |
llvm-svn: 359429
|
|
|
|
| |
llvm-svn: 359196
|
|
|
|
|
|
|
|
| |
If this is set, %INCLUDE% must contain ".../DIA SDK/include"
and %LIB% must contain ".../DIA SKD/lib/amd64" (assuming you're doing a
64-bit build).
llvm-svn: 359195
|
|
|
|
| |
llvm-svn: 359189
|
|
|
|
| |
llvm-svn: 359188
|