mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-13 02:20:22 +01:00
- CefURLRequest::Create is no longer supported in the renderer process (see https://crbug.com/891872). Use CefFrame::CreateURLRequest instead. - Mac platform definitions have been changed from `MACOSX` to `MAC` (see https://crbug.com/1105907) and related CMake macro names have been updated. The old `OS_MACOSX` define is still set in code and CMake for backwards compatibility. - Linux ARM build is currently broken (see https://crbug.com/1123214).
14 lines
467 B
Diff
14 lines
467 B
Diff
diff --git build/config/compiler/BUILD.gn build/config/compiler/BUILD.gn
|
|
index 8166e38ceda5..178099b1ac62 100644
|
|
--- build/config/compiler/BUILD.gn
|
|
+++ build/config/compiler/BUILD.gn
|
|
@@ -1767,8 +1767,6 @@ config("thin_archive") {
|
|
# archive names to 16 characters, which is not what we want).
|
|
if ((is_posix && !is_nacl && !is_mac && !is_ios) || is_fuchsia) {
|
|
arflags = [ "-T" ]
|
|
- } else if (is_win && use_lld) {
|
|
- arflags = [ "/llvmlibthin" ]
|
|
}
|
|
}
|
|
|