-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ship llvm-libc as required by libcxx
- Loading branch information
Showing
11 changed files
with
46 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright 2018 The Chromium Authors. All rights reserved. | ||
# Copyright 2018 The Chromium Authors | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
declare_args() { | ||
# The libc++ svn revision that belongs to the git hash in DEPS. Used to cause | ||
# full rebuilds on libc++ rolls. | ||
libcxx_revision = "79a2e924d96e2fc1e4b937c42efd08898fa472d7" | ||
# Used to cause full rebuilds on libc++ rolls. This should be kept in sync | ||
# with the libcxx_revision var in //DEPS. | ||
libcxx_revision = "d0ddad5b79581e19d8e1aec627bb2ad86e1554cd" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2024 The Chromium Authors | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
config("config") { | ||
visibility = [ ":*" ] | ||
include_dirs = [ "src" ] | ||
defines = [ "LIBC_NAMESPACE=__llvm_libc_cr" ] | ||
} | ||
|
||
group("llvm-libc-shared") { | ||
# llvm-libc is only used as a dependency of libc++. | ||
visibility = [ "//buildtools/third_party/libc++:libc++" ] | ||
|
||
public_configs = [ ":config" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
file://third_party/libc++/OWNERS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Name: llvm-libc | ||
URL: https://libc.llvm.org/ | ||
Version: N/A | ||
Revision: DEPS | ||
License: MIT, University of Illinois/NCSA Open Source License | ||
License File: src/LICENSE.TXT | ||
Security Critical: yes | ||
Shipped: yes | ||
|
||
Description: | ||
|
||
LLVM's C library. libc++ depends on a small subset of this for a few functions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
See README.chromium |
Submodule src
added at
05bd4c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters