r309999 - Enable AddressSanitizer for Fuchsia targets

2017-08-03 Thread Petr Hosek via cfe-commits
Author: phosek Date: Thu Aug 3 16:02:22 2017 New Revision: 30 URL: http://llvm.org/viewvc/llvm-project?rev=30&view=rev Log: Enable AddressSanitizer for Fuchsia targets Patch by Roland McGrath Differential Revision: https://reviews.llvm.org/D35922 Modified: cfe/trunk/cmake/caches/Fu

r310017 - [Driver][Fuchsia] Pass --hash-style=gnu to the linker

2017-08-03 Thread Petr Hosek via cfe-commits
Author: phosek Date: Thu Aug 3 19:39:27 2017 New Revision: 310017 URL: http://llvm.org/viewvc/llvm-project?rev=310017&view=rev Log: [Driver][Fuchsia] Pass --hash-style=gnu to the linker The .gnu_hash format is superior, and all versions of the Fuchsia dynamic linker support it. Differential Rev

[libunwind] r310327 - [CMake] Allow overriding lib dir suffix independently from LLVM

2017-08-07 Thread Petr Hosek via cfe-commits
Author: phosek Date: Mon Aug 7 17:37:59 2017 New Revision: 310327 URL: http://llvm.org/viewvc/llvm-project?rev=310327&view=rev Log: [CMake] Allow overriding lib dir suffix independently from LLVM This matches the options already supported by libc++ and libc++abi. Differential Revision: https://

r310548 - [Driver] Search compiler-rt paths in -print-file-name=

2017-08-09 Thread Petr Hosek via cfe-commits
Author: phosek Date: Wed Aug 9 21:16:38 2017 New Revision: 310548 URL: http://llvm.org/viewvc/llvm-project?rev=310548&view=rev Log: [Driver] Search compiler-rt paths in -print-file-name= This makes it possible to print the name of compiler-rt libraries by using simply clang -print-file-name=libc

r310901 - [CMake] Include LLVMFuzzer in Fuchsia toolchain

2017-08-14 Thread Petr Hosek via cfe-commits
Author: phosek Date: Mon Aug 14 17:22:00 2017 New Revision: 310901 URL: http://llvm.org/viewvc/llvm-project?rev=310901&view=rev Log: [CMake] Include LLVMFuzzer in Fuchsia toolchain Differential Revision: https://reviews.llvm.org/D36541 Modified: cfe/trunk/cmake/caches/Fuchsia-stage2.cmake M

r311033 - [CMake] Build sanitized C++ runtimes for Fuchsia

2017-08-16 Thread Petr Hosek via cfe-commits
Author: phosek Date: Wed Aug 16 12:06:04 2017 New Revision: 311033 URL: http://llvm.org/viewvc/llvm-project?rev=311033&view=rev Log: [CMake] Build sanitized C++ runtimes for Fuchsia Differential Revision: https://reviews.llvm.org/D36349 Modified: cfe/trunk/cmake/caches/Fuchsia-stage2.cmake

r311034 - [Driver] SafeStack does not need a runtime library on Fuchsia

2017-08-16 Thread Petr Hosek via cfe-commits
Author: phosek Date: Wed Aug 16 12:06:05 2017 New Revision: 311034 URL: http://llvm.org/viewvc/llvm-project?rev=311034&view=rev Log: [Driver] SafeStack does not need a runtime library on Fuchsia Patch by Roland McGrath Differential Revision: https://reviews.llvm.org/D36779 Modified: cfe/tru

[libcxxabi] r311045 - [libcxxabi] When built with ASan, __cxa_throw calls __asan_handle_no_return

2017-08-16 Thread Petr Hosek via cfe-commits
Author: phosek Date: Wed Aug 16 14:58:09 2017 New Revision: 311045 URL: http://llvm.org/viewvc/llvm-project?rev=311045&view=rev Log: [libcxxabi] When built with ASan, __cxa_throw calls __asan_handle_no_return The ASan runtime on many systems intercepts cxa_throw just so it can call asan_handle_no

[libcxxabi] r311047 - Revert "[libcxxabi] When built with ASan, __cxa_throw calls __asan_handle_no_return"

2017-08-16 Thread Petr Hosek via cfe-commits
Author: phosek Date: Wed Aug 16 15:05:54 2017 New Revision: 311047 URL: http://llvm.org/viewvc/llvm-project?rev=311047&view=rev Log: Revert "[libcxxabi] When built with ASan, __cxa_throw calls __asan_handle_no_return" This reverts commit r311045 because it's causing an error on libcxx-libcxxabi-

Re: [libcxx] r309474 - [libc++] Hoist extern template above first use

2017-08-17 Thread Petr Hosek via cfe-commits
This broke our build of WebKit with the following build failure: ../../buildtools/linux-x64/clang/bin/clang++ -MD -MF obj/apps/web_view/web_view_test.test_webview.o.d -DTOOLCHAIN_VERSION=4e89c701396412a50a901115ab4a2a09145f3777 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS -DCAIRO_HAS_FC_FONT=0 -DU_U

Re: [libcxx] r309474 - [libc++] Hoist extern template above first use

2017-08-17 Thread Petr Hosek via cfe-commits
Actually nevermind, it seems like it was a different change and this one is harmless (I'm still bisecting libc++ to find out which is causing the error below). On Thu, Aug 17, 2017 at 3:54 PM Petr Hosek wrote: > This broke our build of WebKit with the following build failure: > > ../../buildtool

Re: r310983 - PR19668, PR23034: Fix handling of move constructors and deleted copy

2017-08-17 Thread Petr Hosek via cfe-commits
We're seeing a build failure in WebKit which appears to be have been introduced by this change: ../../buildtools/linux-x64/clang/bin/clang++ -MD -MF obj/apps/web_view/web_view_test.test_webview.o.d -DTOOLCHAIN_VERSION=4e89c701396412a50a901115ab4a2a09145f3777 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATI

Re: [libcxx] r309474 - [libc++] Hoist extern template above first use

2017-08-17 Thread Petr Hosek via cfe-commits
extern template above > first use > > > > probably shouldn't merge this then. > > > > On Aug 17, 2017 4:54 PM, "Petr Hosek via cfe-commits" < > cfe-commits@lists.llvm.org> wrote: > > This broke our build of WebKit with the following build fai

Re: r310983 - PR19668, PR23034: Fix handling of move constructors and deleted copy

2017-08-17 Thread Petr Hosek via cfe-commits
Thanks for a quick response, "#include " indeed helped. On Thu, Aug 17, 2017 at 5:41 PM Richard Smith wrote: > On 17 August 2017 at 17:28, Petr Hosek via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> We're seeing a build failure in WebKit which appe

[clang] b63bc64 - [CMake] clang-scan-deps in Fuchsia distribution

2020-01-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-01-02T16:49:52-08:00 New Revision: b63bc648a489c0f4d78203ae44cc1e9a6f9bcada URL: https://github.com/llvm/llvm-project/commit/b63bc648a489c0f4d78203ae44cc1e9a6f9bcada DIFF: https://github.com/llvm/llvm-project/commit/b63bc648a489c0f4d78203ae44cc1e9a6f9bcada.diff LO

[clang] 231875e - [Clang] Always set -z now linker option on Fuchsia

2020-01-13 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-01-13T11:54:04-08:00 New Revision: 231875e111facf6d15553dff9d7c04d3e9e4a404 URL: https://github.com/llvm/llvm-project/commit/231875e111facf6d15553dff9d7c04d3e9e4a404 DIFF: https://github.com/llvm/llvm-project/commit/231875e111facf6d15553dff9d7c04d3e9e4a404.diff LO

[clang] d58fd4e - [compiler-rt] Compile assembly files as ASM not C

2020-08-20 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-08-20T00:34:59-07:00 New Revision: d58fd4e52197d55bf42ca446c8b0ed31b5c2ec1f URL: https://github.com/llvm/llvm-project/commit/d58fd4e52197d55bf42ca446c8b0ed31b5c2ec1f DIFF: https://github.com/llvm/llvm-project/commit/d58fd4e52197d55bf42ca446c8b0ed31b5c2ec1f.diff LO

[clang] de47e71 - [CMake][Fuchsia] Don't set WIN32 API, rely on autodetection

2020-10-01 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-10-01T12:35:52-07:00 New Revision: de47e7122f69d56399c4f8864ba279e5ce635970 URL: https://github.com/llvm/llvm-project/commit/de47e7122f69d56399c4f8864ba279e5ce635970 DIFF: https://github.com/llvm/llvm-project/commit/de47e7122f69d56399c4f8864ba279e5ce635970.diff LO

[clang] a594fd2 - [Driver] Move detectLibcxxIncludePath to ToolChain

2020-10-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-10-02T14:23:48-07:00 New Revision: a594fd28e373cb7cd348cf01f6a90e055bf6cf6d URL: https://github.com/llvm/llvm-project/commit/a594fd28e373cb7cd348cf01f6a90e055bf6cf6d DIFF: https://github.com/llvm/llvm-project/commit/a594fd28e373cb7cd348cf01f6a90e055bf6cf6d.diff LO

[clang] 9a48411 - Revert "[Driver] Move detectLibcxxIncludePath to ToolChain"

2020-10-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-10-02T16:59:28-07:00 New Revision: 9a48411f35a122ac8755a8453887b919c77daf3f URL: https://github.com/llvm/llvm-project/commit/9a48411f35a122ac8755a8453887b919c77daf3f DIFF: https://github.com/llvm/llvm-project/commit/9a48411f35a122ac8755a8453887b919c77daf3f.diff LO

[clang] e25bf25 - [Driver] Move detectLibcxxIncludePath to ToolChain

2020-10-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-10-02T18:37:20-07:00 New Revision: e25bf2592060e7751f8b14522c97081ce2047175 URL: https://github.com/llvm/llvm-project/commit/e25bf2592060e7751f8b14522c97081ce2047175 DIFF: https://github.com/llvm/llvm-project/commit/e25bf2592060e7751f8b14522c97081ce2047175.diff LO

[clang] b72813f - [CMake][Fuchsia] Start building arm64 Darwin runtimes

2020-10-13 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2020-10-13T19:50:45-07:00 New Revision: b72813f4d6a0a0f1dc79afc1ca7e0e4d55ad6a72 URL: https://github.com/llvm/llvm-project/commit/b72813f4d6a0a0f1dc79afc1ca7e0e4d55ad6a72 DIFF: https://github.com/llvm/llvm-project/commit/b72813f4d6a0a0f1dc79afc1ca7e0e4d55ad6a72.diff LO

[clang] b604301 - [Driver] Support libc++ in MSVC

2021-05-22 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-05-22T13:32:23-07:00 New Revision: b604301be3559fb85a11779db79fc9bda4b62bce URL: https://github.com/llvm/llvm-project/commit/b604301be3559fb85a11779db79fc9bda4b62bce DIFF: https://github.com/llvm/llvm-project/commit/b604301be3559fb85a11779db79fc9bda4b62bce.diff LO

[clang] 5ff79f0 - Revert "[Driver] Support libc++ in MSVC"

2021-05-22 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-05-22T15:49:46-07:00 New Revision: 5ff79f001feb6584e87173348a24f3f317e35984 URL: https://github.com/llvm/llvm-project/commit/5ff79f001feb6584e87173348a24f3f317e35984 DIFF: https://github.com/llvm/llvm-project/commit/5ff79f001feb6584e87173348a24f3f317e35984.diff LO

[clang] b5dd421 - [Fuchsia] Use libc++abi on Windows in Fuchsia toolchain

2021-06-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-02T14:56:27-07:00 New Revision: b5dd421a3afa0290fddf61073274e2a4aa9a URL: https://github.com/llvm/llvm-project/commit/b5dd421a3afa0290fddf61073274e2a4aa9a DIFF: https://github.com/llvm/llvm-project/commit/b5dd421a3afa0290fddf61073274e2a4aa9a.diff LO

[clang] e237168 - Revert "[Fuchsia] Use libc++abi on Windows in Fuchsia toolchain"

2021-06-03 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-03T01:18:22-07:00 New Revision: e237168341ed9688ee70277465a488b6f4b8ba03 URL: https://github.com/llvm/llvm-project/commit/e237168341ed9688ee70277465a488b6f4b8ba03 DIFF: https://github.com/llvm/llvm-project/commit/e237168341ed9688ee70277465a488b6f4b8ba03.diff LO

[clang] 0217f1c - Make the profile-filter.c test compatible with 32-bit systems

2021-01-29 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-01-29T09:58:32-08:00 New Revision: 0217f1c7a31ba44715bc083a60cddc2192ffed96 URL: https://github.com/llvm/llvm-project/commit/0217f1c7a31ba44715bc083a60cddc2192ffed96 DIFF: https://github.com/llvm/llvm-project/commit/0217f1c7a31ba44715bc083a60cddc2192ffed96.diff LO

[clang] df3e39f - [InstrProfiling] Use !associated metadata for counters, data and values

2021-02-01 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-01T15:01:43-08:00 New Revision: df3e39f60b356ca9dbfc11e96e5fdda30afa7acb URL: https://github.com/llvm/llvm-project/commit/df3e39f60b356ca9dbfc11e96e5fdda30afa7acb DIFF: https://github.com/llvm/llvm-project/commit/df3e39f60b356ca9dbfc11e96e5fdda30afa7acb.diff LO

[clang] 97ba5cd - [InstrProfiling] Use !associated metadata for counters, data and values

2021-02-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-02T23:19:51-08:00 New Revision: 97ba5cde52664200819446c1a18de28faf2ed1c6 URL: https://github.com/llvm/llvm-project/commit/97ba5cde52664200819446c1a18de28faf2ed1c6 DIFF: https://github.com/llvm/llvm-project/commit/97ba5cde52664200819446c1a18de28faf2ed1c6.diff LO

[clang] 9fd9b5a - Don't emit coverage mapping for excluded functions

2021-02-05 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-05T13:03:57-08:00 New Revision: 9fd9b5a9c9ece53ce36ec87e7dc8389d0f572476 URL: https://github.com/llvm/llvm-project/commit/9fd9b5a9c9ece53ce36ec87e7dc8389d0f572476 DIFF: https://github.com/llvm/llvm-project/commit/9fd9b5a9c9ece53ce36ec87e7dc8389d0f572476.diff LO

[clang] 5e28c89 - [Driver] Correctly handle static C++ standard library

2021-09-23 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-09-23T01:00:11-07:00 New Revision: 5e28c892d06f95600f8b6290ad4de38bfe142637 URL: https://github.com/llvm/llvm-project/commit/5e28c892d06f95600f8b6290ad4de38bfe142637 DIFF: https://github.com/llvm/llvm-project/commit/5e28c892d06f95600f8b6290ad4de38bfe142637.diff LO

[clang] 904ca7d - Revert "[Driver] Correctly handle static C++ standard library"

2021-09-23 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-09-23T01:13:10-07:00 New Revision: 904ca7d2ed97bf114fd11373c722acd1e54bfaa3 URL: https://github.com/llvm/llvm-project/commit/904ca7d2ed97bf114fd11373c722acd1e54bfaa3 DIFF: https://github.com/llvm/llvm-project/commit/904ca7d2ed97bf114fd11373c722acd1e54bfaa3.diff LO

[clang] 03142c5 - [Driver] Correctly handle static C++ standard library

2021-09-24 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-09-24T00:40:16-07:00 New Revision: 03142c5f67788bcc1573f76732d0fccd75c6b965 URL: https://github.com/llvm/llvm-project/commit/03142c5f67788bcc1573f76732d0fccd75c6b965 DIFF: https://github.com/llvm/llvm-project/commit/03142c5f67788bcc1573f76732d0fccd75c6b965.diff LO

[clang] d893692 - [CMake] Pass through CMAKE_READELF to subbuilds

2021-09-24 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-09-24T18:20:30-07:00 New Revision: d893692024b8f05c63329f9a4e5f2432380be27c URL: https://github.com/llvm/llvm-project/commit/d893692024b8f05c63329f9a4e5f2432380be27c DIFF: https://github.com/llvm/llvm-project/commit/d893692024b8f05c63329f9a4e5f2432380be27c.diff LO

[clang] d7ae434 - [Driver] Check that short triples are supported for Fuchsia

2021-09-29 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-09-29T10:35:40-07:00 New Revision: d7ae43438a04bcb651ede50c19042e08514bf729 URL: https://github.com/llvm/llvm-project/commit/d7ae43438a04bcb651ede50c19042e08514bf729 DIFF: https://github.com/llvm/llvm-project/commit/d7ae43438a04bcb651ede50c19042e08514bf729.diff LO

[clang] 97ec8fa - [Coverage] Store compilation dir separately in coverage mapping

2021-02-18 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-18T12:27:42-08:00 New Revision: 97ec8fa5bb07e3f5bf25ddcb216b545cd3d03b65 URL: https://github.com/llvm/llvm-project/commit/97ec8fa5bb07e3f5bf25ddcb216b545cd3d03b65 DIFF: https://github.com/llvm/llvm-project/commit/97ec8fa5bb07e3f5bf25ddcb216b545cd3d03b65.diff LO

[clang] 5fbd1a3 - [Coverage] Store compilation dir separately in coverage mapping

2021-02-18 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-18T14:34:39-08:00 New Revision: 5fbd1a333aa1a0b70903d036b98ea56c51ae5224 URL: https://github.com/llvm/llvm-project/commit/5fbd1a333aa1a0b70903d036b98ea56c51ae5224 DIFF: https://github.com/llvm/llvm-project/commit/5fbd1a333aa1a0b70903d036b98ea56c51ae5224.diff LO

[clang] 3275b18 - [Coverage] Normalize compilation dir as well

2021-02-19 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-19T15:29:03-08:00 New Revision: 3275b18f8979ab750e3674f28e7f82c7ef37d2a3 URL: https://github.com/llvm/llvm-project/commit/3275b18f8979ab750e3674f28e7f82c7ef37d2a3 DIFF: https://github.com/llvm/llvm-project/commit/3275b18f8979ab750e3674f28e7f82c7ef37d2a3.diff LO

[clang] 9625d61 - [Driver] Support libc++ in MSVC

2021-06-07 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-07T23:36:10-07:00 New Revision: 9625d61eb66c12388875e081b63ebed7e42c6bbb URL: https://github.com/llvm/llvm-project/commit/9625d61eb66c12388875e081b63ebed7e42c6bbb DIFF: https://github.com/llvm/llvm-project/commit/9625d61eb66c12388875e081b63ebed7e42c6bbb.diff LO

[clang] 1dba2a0 - [Fuchsia] Update some of the Fuchsia toolchain flags

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T10:04:19-07:00 New Revision: 1dba2a026956b0f3918dcf8bb1d3f3483db2de8c URL: https://github.com/llvm/llvm-project/commit/1dba2a026956b0f3918dcf8bb1d3f3483db2de8c DIFF: https://github.com/llvm/llvm-project/commit/1dba2a026956b0f3918dcf8bb1d3f3483db2de8c.diff LO

[clang] de98da2 - [CMake] Only include LTO on Apple targets

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T11:00:01-07:00 New Revision: de98da2eced72eee791a93b076b70a7b22175abc URL: https://github.com/llvm/llvm-project/commit/de98da2eced72eee791a93b076b70a7b22175abc DIFF: https://github.com/llvm/llvm-project/commit/de98da2eced72eee791a93b076b70a7b22175abc.diff LO

[clang] f673365 - [CMake][Fuchsia] Include llvm-otool in Fuchsia toolchain

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T11:25:17-07:00 New Revision: f673365e1ce16293075c18d03cd2f1ae6264289f URL: https://github.com/llvm/llvm-project/commit/f673365e1ce16293075c18d03cd2f1ae6264289f DIFF: https://github.com/llvm/llvm-project/commit/f673365e1ce16293075c18d03cd2f1ae6264289f.diff LO

[clang] 2a5afb4 - [CMake][Fuchsia] Use PIC for Fuchsia runtimes

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T12:30:27-07:00 New Revision: 2a5afb466553ae4e185d7fa50c9b8df9fe62ecda URL: https://github.com/llvm/llvm-project/commit/2a5afb466553ae4e185d7fa50c9b8df9fe62ecda DIFF: https://github.com/llvm/llvm-project/commit/2a5afb466553ae4e185d7fa50c9b8df9fe62ecda.diff LO

[clang] a7142f5 - Partially revert the Fuchsia changes to avoid the use of PIC

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T13:03:26-07:00 New Revision: a7142f5c91ba0e4dbe6dbd36e3f4ac6ccd33a418 URL: https://github.com/llvm/llvm-project/commit/a7142f5c91ba0e4dbe6dbd36e3f4ac6ccd33a418 DIFF: https://github.com/llvm/llvm-project/commit/a7142f5c91ba0e4dbe6dbd36e3f4ac6ccd33a418.diff LO

[clang] 1683dbf - [CMake][Fuchsia] Disable vcruntime for first stage as well

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T13:44:24-07:00 New Revision: 1683dbf0ddb28c829926b18065f692ee670693fc URL: https://github.com/llvm/llvm-project/commit/1683dbf0ddb28c829926b18065f692ee670693fc DIFF: https://github.com/llvm/llvm-project/commit/1683dbf0ddb28c829926b18065f692ee670693fc.diff LO

[clang] b413e44 - [CMake] Don't use libc++ by default on Windows yet

2021-06-08 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-08T23:57:14-07:00 New Revision: b413e44200e715c254fa9a41f6a86f8761c9b362 URL: https://github.com/llvm/llvm-project/commit/b413e44200e715c254fa9a41f6a86f8761c9b362 DIFF: https://github.com/llvm/llvm-project/commit/b413e44200e715c254fa9a41f6a86f8761c9b362.diff LO

[clang] 0d5af7a - Revert "[CMake] Don't use libc++ by default on Windows yet"

2021-06-11 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-11T00:45:49-07:00 New Revision: 0d5af7a4caaf19ff97ca90e9ca7f2b78a858ab07 URL: https://github.com/llvm/llvm-project/commit/0d5af7a4caaf19ff97ca90e9ca7f2b78a858ab07 DIFF: https://github.com/llvm/llvm-project/commit/0d5af7a4caaf19ff97ca90e9ca7f2b78a858ab07.diff LO

[clang] 22f1949 - Revert "[Driver] Support libc++ in MSVC"

2021-06-11 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-06-11T00:45:56-07:00 New Revision: 22f194909ae24aed817976fb54b759550e90db36 URL: https://github.com/llvm/llvm-project/commit/22f194909ae24aed817976fb54b759550e90db36 DIFF: https://github.com/llvm/llvm-project/commit/22f194909ae24aed817976fb54b759550e90db36.diff LO

[clang] a9d1970 - Revert "[clang][cache] Update Fuchsia-stage2.cmake to create hwasan multilibs"

2021-07-30 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-07-30T18:56:51-07:00 New Revision: a9d1970384aa3908adbf6f50f110c375def58947 URL: https://github.com/llvm/llvm-project/commit/a9d1970384aa3908adbf6f50f110c375def58947 DIFF: https://github.com/llvm/llvm-project/commit/a9d1970384aa3908adbf6f50f110c375def58947.diff LO

[clang] 389dc94 - [InstrProfiling] Generate runtime hook for Fuchsia

2021-08-10 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-08-10T23:21:15-07:00 New Revision: 389dc94d4be7a75c243528981a25260c1c7a6103 URL: https://github.com/llvm/llvm-project/commit/389dc94d4be7a75c243528981a25260c1c7a6103 DIFF: https://github.com/llvm/llvm-project/commit/389dc94d4be7a75c243528981a25260c1c7a6103.diff LO

[clang] d788c44 - [Support] Improve Caching conformance with Support library behavior

2021-11-04 Thread Petr Hosek via cfe-commits
Author: Noah Shutty Date: 2021-11-04T13:00:44-07:00 New Revision: d788c44f5cddb3e73069cd4d965bbf55b0d602d5 URL: https://github.com/llvm/llvm-project/commit/d788c44f5cddb3e73069cd4d965bbf55b0d602d5 DIFF: https://github.com/llvm/llvm-project/commit/d788c44f5cddb3e73069cd4d965bbf55b0d602d5.diff L

[clang] 8df26e7 - [Fuchsia][CMake] Don't set libcxxabi and libunwind variables on Windows

2021-11-11 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-11-11T19:29:39-08:00 New Revision: 8df26e7b4aeaad0b1777c6909db7b14fec347880 URL: https://github.com/llvm/llvm-project/commit/8df26e7b4aeaad0b1777c6909db7b14fec347880 DIFF: https://github.com/llvm/llvm-project/commit/8df26e7b4aeaad0b1777c6909db7b14fec347880.diff LO

[clang] 9e56a09 - [Driver] Create -ffile-compilation-dir alias

2021-02-25 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-25T21:20:10-08:00 New Revision: 9e56a093eeca15704180cce3a808aec195b331d1 URL: https://github.com/llvm/llvm-project/commit/9e56a093eeca15704180cce3a808aec195b331d1 DIFF: https://github.com/llvm/llvm-project/commit/9e56a093eeca15704180cce3a808aec195b331d1.diff LO

[clang] 8459b8e - [Driver] Rename -fprofile-{prefix-map,compilation-dir} to -fcoverage-{prefix-map,compilation-dir}

2021-02-25 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-25T21:40:12-08:00 New Revision: 8459b8ef39f4d745f2aab8c43821b3389b0e5a74 URL: https://github.com/llvm/llvm-project/commit/8459b8ef39f4d745f2aab8c43821b3389b0e5a74 DIFF: https://github.com/llvm/llvm-project/commit/8459b8ef39f4d745f2aab8c43821b3389b0e5a74.diff LO

[clang] bf6380c - [Driver] Don't pass -ffile-compilation-dir through to cc1

2021-02-25 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-02-25T23:03:54-08:00 New Revision: bf6380c0966b26a2aec7f2072efd0a1a9b6328f2 URL: https://github.com/llvm/llvm-project/commit/bf6380c0966b26a2aec7f2072efd0a1a9b6328f2 DIFF: https://github.com/llvm/llvm-project/commit/bf6380c0966b26a2aec7f2072efd0a1a9b6328f2.diff LO

[clang] 1d1983f - [CMake] Enable Polly for Fuchsia toolchain build

2021-03-02 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-03-02T16:51:16-08:00 New Revision: 1d1983f2d0a04f2516881aae258d7264624a609e URL: https://github.com/llvm/llvm-project/commit/1d1983f2d0a04f2516881aae258d7264624a609e DIFF: https://github.com/llvm/llvm-project/commit/1d1983f2d0a04f2516881aae258d7264624a609e.diff LO

[clang] 3cd2f42 - [Fuchsia] Enable Polly for first stage as well

2021-03-05 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-03-05T14:35:57-08:00 New Revision: 3cd2f42521fea89de3cf720fc0299690e82a7660 URL: https://github.com/llvm/llvm-project/commit/3cd2f42521fea89de3cf720fc0299690e82a7660 DIFF: https://github.com/llvm/llvm-project/commit/3cd2f42521fea89de3cf720fc0299690e82a7660.diff LO

[clang] 41476d8 - [Driver] Pass --unwindlib=platform to tests that check unwinder

2021-03-06 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-03-06T21:44:26-08:00 New Revision: 41476d89b82647c1ff690fdc805c859262d571e5 URL: https://github.com/llvm/llvm-project/commit/41476d89b82647c1ff690fdc805c859262d571e5 DIFF: https://github.com/llvm/llvm-project/commit/41476d89b82647c1ff690fdc805c859262d571e5.diff LO

[clang] 7514f1a - [Driver] Pass --unwindlib=platform to tests that check unwinder

2021-03-07 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-03-07T17:28:34-08:00 New Revision: 7514f1a312751089ef25df02eaf638a5a5192da3 URL: https://github.com/llvm/llvm-project/commit/7514f1a312751089ef25df02eaf638a5a5192da3 DIFF: https://github.com/llvm/llvm-project/commit/7514f1a312751089ef25df02eaf638a5a5192da3.diff LO

[clang] 87fd09b - [InstrProfiling] Generate runtime hook for ELF platforms

2021-03-11 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-03-11T12:29:01-08:00 New Revision: 87fd09b25f8892e07b7ba11525baa9c3ec3e5d3f URL: https://github.com/llvm/llvm-project/commit/87fd09b25f8892e07b7ba11525baa9c3ec3e5d3f DIFF: https://github.com/llvm/llvm-project/commit/87fd09b25f8892e07b7ba11525baa9c3ec3e5d3f.diff LO

[clang] 75cdeff - [Fuchsia] Add check-polly to CLANG_BOOTSTRAP_TARGETS

2021-03-12 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2021-03-12T18:31:20-08:00 New Revision: 75cdeff43b2b83baf643ccfd318f6669844fe370 URL: https://github.com/llvm/llvm-project/commit/75cdeff43b2b83baf643ccfd318f6669844fe370 DIFF: https://github.com/llvm/llvm-project/commit/75cdeff43b2b83baf643ccfd318f6669844fe370.diff LO

[clang] 8d89dbc - [CMake] Drop libLTO and switch to PIE for Fuchsia toolchain

2022-10-21 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-10-21T18:33:13Z New Revision: 8d89dbceeb576171efd12a5657c038a2ec2e54a5 URL: https://github.com/llvm/llvm-project/commit/8d89dbceeb576171efd12a5657c038a2ec2e54a5 DIFF: https://github.com/llvm/llvm-project/commit/8d89dbceeb576171efd12a5657c038a2ec2e54a5.diff LOG: [C

[clang] 17f4e1d - Revert "[CMake] Drop libLTO and switch to PIE for Fuchsia toolchain"

2022-10-21 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-10-21T19:49:19Z New Revision: 17f4e1d27fbeea94234408814f0497f9ca45b61b URL: https://github.com/llvm/llvm-project/commit/17f4e1d27fbeea94234408814f0497f9ca45b61b DIFF: https://github.com/llvm/llvm-project/commit/17f4e1d27fbeea94234408814f0497f9ca45b61b.diff LOG: Re

[clang] a6f621b - [CMake] Drop libLTO and switch to PIE for Fuchsia toolchain

2022-10-23 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-10-23T21:36:45Z New Revision: a6f621b8cacca926d809010c135be038fd05652c URL: https://github.com/llvm/llvm-project/commit/a6f621b8cacca926d809010c135be038fd05652c DIFF: https://github.com/llvm/llvm-project/commit/a6f621b8cacca926d809010c135be038fd05652c.diff LOG: [C

[clang] a423031 - [Driver] Support libc++ in MSVC

2022-08-17 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-08-18T04:04:40Z New Revision: a4230319f7af786f4d947f39a870f339b32a6fe7 URL: https://github.com/llvm/llvm-project/commit/a4230319f7af786f4d947f39a870f339b32a6fe7 DIFF: https://github.com/llvm/llvm-project/commit/a4230319f7af786f4d947f39a870f339b32a6fe7.diff LOG: [D

[clang] 6741f0f - Revert "[Driver] Support libc++ in MSVC"

2022-08-18 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-08-18T08:22:43Z New Revision: 6741f0f9124dd28e1a4bade173774fc47fb75912 URL: https://github.com/llvm/llvm-project/commit/6741f0f9124dd28e1a4bade173774fc47fb75912 DIFF: https://github.com/llvm/llvm-project/commit/6741f0f9124dd28e1a4bade173774fc47fb75912.diff LOG: Re

[clang] eca29d4 - [Clang] Avoid using unwind library in the MSVC environment

2022-08-23 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-08-24T00:09:01Z New Revision: eca29d4a37b8d1c93fe99be6289a60bb11cf789d URL: https://github.com/llvm/llvm-project/commit/eca29d4a37b8d1c93fe99be6289a60bb11cf789d DIFF: https://github.com/llvm/llvm-project/commit/eca29d4a37b8d1c93fe99be6289a60bb11cf789d.diff LOG: [C

[clang] d3b14cc - Revert "[Clang] Avoid using unwind library in the MSVC environment"

2022-08-24 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-08-24T08:24:18Z New Revision: d3b14ccafb198ac02109dae16e966ba70a6058b7 URL: https://github.com/llvm/llvm-project/commit/d3b14ccafb198ac02109dae16e966ba70a6058b7 DIFF: https://github.com/llvm/llvm-project/commit/d3b14ccafb198ac02109dae16e966ba70a6058b7.diff LOG: Re

[clang] 74af56c - [Clang] Avoid using unwind library in the MSVC environment

2022-08-24 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-08-24T17:34:47Z New Revision: 74af56c1c342038d385134add13cd2a7db7f0a70 URL: https://github.com/llvm/llvm-project/commit/74af56c1c342038d385134add13cd2a7db7f0a70 DIFF: https://github.com/llvm/llvm-project/commit/74af56c1c342038d385134add13cd2a7db7f0a70.diff LOG: [C

[clang] 4308166 - [Fuchsia] Re-enable HWASan for globals in runtimes

2023-01-30 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2023-01-31T07:31:05Z New Revision: 4308166403b4c28b6db7094a4e202e42da6e28a8 URL: https://github.com/llvm/llvm-project/commit/4308166403b4c28b6db7094a4e202e42da6e28a8 DIFF: https://github.com/llvm/llvm-project/commit/4308166403b4c28b6db7094a4e202e42da6e28a8.diff LOG: [F

[clang] b5be69c - [Driver][Fuchsia] Support --emit-static-lib in Fuchsia driver

2023-02-01 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2023-02-01T19:42:31Z New Revision: b5be69cd6af5acacb3ddea4011c05e8e25334067 URL: https://github.com/llvm/llvm-project/commit/b5be69cd6af5acacb3ddea4011c05e8e25334067 DIFF: https://github.com/llvm/llvm-project/commit/b5be69cd6af5acacb3ddea4011c05e8e25334067.diff LOG: [D

[clang] 9bdc9c9 - [Driver][Fuchsia] Remove relative vtable multilib

2023-02-01 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2023-02-02T00:29:00Z New Revision: 9bdc9c9cf70a054711eaaec81da833ad7936379e URL: https://github.com/llvm/llvm-project/commit/9bdc9c9cf70a054711eaaec81da833ad7936379e DIFF: https://github.com/llvm/llvm-project/commit/9bdc9c9cf70a054711eaaec81da833ad7936379e.diff LOG: [D

[clang] 18a1fc8 - [CMake][compiler-rt] Provide a dedicated option for LLVM unwinder

2022-06-14 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-06-14T17:26:25Z New Revision: 18a1fc8459b7fa8ca639d53e4aa5e5f5d68e8407 URL: https://github.com/llvm/llvm-project/commit/18a1fc8459b7fa8ca639d53e4aa5e5f5d68e8407 DIFF: https://github.com/llvm/llvm-project/commit/18a1fc8459b7fa8ca639d53e4aa5e5f5d68e8407.diff LOG: [C

[clang] 55ba083 - [Clang] Let the linker choose shared or static libunwind unless specified

2022-06-15 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2022-06-15T18:22:13Z New Revision: 55ba0830e4591c9767bbd4530639976f1242a61a URL: https://github.com/llvm/llvm-project/commit/55ba0830e4591c9767bbd4530639976f1242a61a DIFF: https://github.com/llvm/llvm-project/commit/55ba0830e4591c9767bbd4530639976f1242a61a.diff LOG: [C

[clang] [clang][Driver] Obey -fuse-ld=... for -print-prog-name=ld output (PR #66698)

2023-09-19 Thread Petr Hosek via cfe-commits
petrhosek wrote: To give you a concrete example, I recently encountered this issue when compiling [libffi](https://github.com/libffi/libffi). https://github.com/llvm/llvm-project/pull/66698 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https

[libunwind] [runtimes] Remove explicit -isysroot from the testing configurations on macOS (PR #66265)

2023-09-21 Thread Petr Hosek via cfe-commits
petrhosek wrote: > @petrhosek Please take a look -- this is passing CI and I believe this should > support your use case. And it's definitely the way these configuration files > should have been set up from the start, I guess I just didn't think of doing > it that way when I hit the sysroot is

[clang] [Fuchsia] Build with -fvisibility=default (PR #67067)

2023-09-21 Thread Petr Hosek via cfe-commits
@@ -52,6 +52,7 @@ set(ENABLE_LINKER_BUILD_ID ON CACHE BOOL "") set(ENABLE_X86_RELAX_RELOCATIONS ON CACHE BOOL "") set(CMAKE_BUILD_TYPE Release CACHE STRING "") +set(CMAKE_CXX_VISIBILITY_PRESET default CACHE STRING "") petrhosek wrote: Should we also set `CMAK

[libunwind] [runtimes] Remove explicit -isysroot from the testing configurations on macOS (PR #66265)

2023-09-25 Thread Petr Hosek via cfe-commits
petrhosek wrote: > How do you build on Apple platforms then? Don't you need access to a SDK? I'm > a bit confused about what you're doing -- do you need to use the native > platform SDK when you're building Fuchsia? What SDK are you passing as > `--sysroot` when testing libc++? We use `-isysr

[clang] [clang-cl] Fix value of __FUNCTION__ and __FUNC__ in MSVC mode for c++. (PR #66120)

2023-09-27 Thread Petr Hosek via cfe-commits
petrhosek wrote: Our preference would be to revert the change and reland it later since this doesn't appear to be a quick fix, which is in line with https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy https://github.com/llvm/llvm-project/pull/66120 ___

[clang-tools-extra] [clang-cl] Fix value of __FUNCTION__ and __FUNC__ in MSVC mode for c++. (PR #66120)

2023-09-27 Thread Petr Hosek via cfe-commits
petrhosek wrote: Our preference would be to revert the change and reland it later since this doesn't appear to be a quick fix, which is in line with https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy https://github.com/llvm/llvm-project/pull/66120 ___

[clang] [clang] Support fixed point type mangling (PR #67750)

2023-09-28 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek approved this pull request. https://github.com/llvm/llvm-project/pull/67750 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][RelativeVTables] Make the rtti_proxy LinkOnceODR instead of External linkage (PR #67755)

2023-09-29 Thread Petr Hosek via cfe-commits
petrhosek wrote: The change to `clang/test/CodeGenCXX/fixed-point-mangle.cpp` is unrelated. https://github.com/llvm/llvm-project/pull/67755 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-comm

[clang] Update GoogleTest to v1.14.0 (PR #65823)

2023-09-29 Thread Petr Hosek via cfe-commits
petrhosek wrote: We have seen occasional segfaults when using rpmalloc in other tools such as GN and Ninja which we haven't been able to get to the bottom of so we eventually switched to another allocator. It's possible that it's the same issue here, in which case perhaps we should reconsider

[clang] [clang][RelativeVTables] Make the rtti_proxy LinkOnceODR instead of External linkage (PR #67755)

2023-10-03 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek approved this pull request. https://github.com/llvm/llvm-project/pull/67755 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][RelativeVTables] Make the rtti_proxy LinkOnceODR instead of External linkage (PR #67755)

2023-10-03 Thread Petr Hosek via cfe-commits
@@ -639,8 +639,16 @@ void CodeGenVTables::addRelativeComponent(ConstantArrayBuilder &builder, // want the stub/proxy to be emitted for properly calculating the offset. // Examples where there would be no symbol emitted are available_externally // and private linkages. -

[clang] [clang][RelativeVTables] Make the rtti_proxy LinkOnceODR instead of External linkage (PR #67755)

2023-10-03 Thread Petr Hosek via cfe-commits
@@ -639,8 +639,16 @@ void CodeGenVTables::addRelativeComponent(ConstantArrayBuilder &builder, // want the stub/proxy to be emitted for properly calculating the offset. // Examples where there would be no symbol emitted are available_externally // and private linkages. -

[clang] 28f5322 - [CMake] Include riscv32-unknown-elf runtimes in Fuchsia toolchain

2023-07-25 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2023-07-26T06:09:42Z New Revision: 28f5322770a13cd2cd796d0936d3db1a454e620b URL: https://github.com/llvm/llvm-project/commit/28f5322770a13cd2cd796d0936d3db1a454e620b DIFF: https://github.com/llvm/llvm-project/commit/28f5322770a13cd2cd796d0936d3db1a454e620b.diff LOG: [C

[clang] 73362c4 - Revert "[CMake] Include riscv32-unknown-elf runtimes in Fuchsia toolchain"

2023-07-26 Thread Petr Hosek via cfe-commits
Author: Petr Hosek Date: 2023-07-26T08:05:03Z New Revision: 73362c44eb430b759c81639e67a87231ea51c48a URL: https://github.com/llvm/llvm-project/commit/73362c44eb430b759c81639e67a87231ea51c48a DIFF: https://github.com/llvm/llvm-project/commit/73362c44eb430b759c81639e67a87231ea51c48a.diff LOG: Re

[clang] [clang-format] Fix a bug in mis-annotating arrows (PR #67780)

2023-10-16 Thread Petr Hosek via cfe-commits
petrhosek wrote: This introduced a regression where Clang-Format misformats Thread Safety Analysis annotations that include an arrow, #69234 has more details. Would it be possible to take a look? https://github.com/llvm/llvm-project/pull/67780 ___ cf

[clang] Update GoogleTest to v1.14.0 (PR #65823)

2023-09-09 Thread Petr Hosek via cfe-commits
@@ -77,18 +77,18 @@ endif () target_include_directories(llvm_gtest PUBLIC $ $ - $ - $ + $ + $ petrhosek wrote: This is undoing a change made recently in https://github.com/llvm/llvm-project/commit/91b3ca39667b6341a8c

[clang] Update GoogleTest to v1.14.0 (PR #65823)

2023-09-09 Thread Petr Hosek via cfe-commits
@@ -77,18 +77,18 @@ endif () target_include_directories(llvm_gtest PUBLIC $ $ - $ - $ + $ + $ PRIVATE googletest googlemock ) add_subdirectory(UnitTestMain) if (LLVM_INSTALL_GTEST) install(TARGETS llvm_gtest llvm_gtest_m

[clang] Update GoogleTest to v1.14.0 (PR #65823)

2023-09-09 Thread Petr Hosek via cfe-commits
@@ -1,22 +1,21 @@ LLVM notes -- -This directory contains Google Test 1.10.0, with all elements removed except for -the actual source code, to minimize the addition to the LLVM distribution. +This directory contains Google Test 1.14.0, +revision `f8d7d77c06936315286eb5

[clang] [Fuchsia] Disable libcxx timezone database (PR #65870)

2023-09-09 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek approved this pull request. https://github.com/llvm/llvm-project/pull/65870 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Fuchsia] Re-enable libcxx timezone database (PR #65981)

2023-09-11 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek approved this pull request. https://github.com/llvm/llvm-project/pull/65981 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Update GoogleTest to v1.14.0 (PR #65823)

2023-09-11 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek approved this pull request. https://github.com/llvm/llvm-project/pull/65823 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Fuchsia] Support building runtimes for RISC-V on Linux (PR #66025)

2023-09-11 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek review_requested https://github.com/llvm/llvm-project/pull/66025 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Fuchsia] Support building runtimes for RISC-V on Linux (PR #66025)

2023-09-11 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek review_requested https://github.com/llvm/llvm-project/pull/66025 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Fuchsia] Support building runtimes for RISC-V on Linux (PR #66025)

2023-09-11 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek created https://github.com/llvm/llvm-project/pull/66025: We support RISC-V on Linux as the host platform for Fuchsia. >From d852343fdeae38eb1e96791533c3811af24fe534 Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Mon, 11 Sep 2023 22:50:43 + Subject: [PATCH] [Fu

[clang] [Fuchsia] Support building runtimes for RISC-V on Linux (PR #66025)

2023-09-11 Thread Petr Hosek via cfe-commits
https://github.com/petrhosek closed https://github.com/llvm/llvm-project/pull/66025 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [sanitizer_symbolizer] Symbolizer Markup for linux (PR #66126)

2023-09-12 Thread Petr Hosek via cfe-commits
=?utf-8?q?Andrés?= Villegas , =?utf-8?q?Andrés?= Villegas , =?utf-8?q?Andrés?= Villegas , =?utf-8?q?Andrés?= Villegas petrhosek wrote: Could we move functions in [compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h](https://github.com/llvm/llvm-project/blob/231aa0f2120552b474bf86d5

<    1   2   3   4   5   6   7   8   9   10   >