mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
Documentation+Meta: Remove references to nonexistent Toolchain directory
After b1d708dd16, the Toolchain directory
was removed from the repository. Some documentation and scripts still
referenced it, so this commit removes those references. The only
remaining references are in the gitignore file, to prevent bisections
from being polluted by the presence of a Toolchain directory in the
working copy.
This commit is contained in:
Notes:
github-actions[bot]
2026-04-21 10:57:32 +00:00
Author: https://github.com/ADKaster Commit: https://github.com/LadybirdBrowser/ladybird/commit/5c835157c64 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/9002
@@ -47,16 +47,10 @@
|
||||
// Excluding the generated directories keeps your file view clean and speeds up search.
|
||||
"files.exclude": {
|
||||
"**/.git": true,
|
||||
"Toolchain/Local/**": true,
|
||||
"Toolchain/Tarballs/**": true,
|
||||
"Toolchain/Build/**": true,
|
||||
"Build/**": true
|
||||
},
|
||||
"search.exclude": {
|
||||
"**/.git": true,
|
||||
"Toolchain/Local/**": true,
|
||||
"Toolchain/Tarballs/**": true,
|
||||
"Toolchain/Build/**": true,
|
||||
"Build/**": true
|
||||
},
|
||||
// Tab settings
|
||||
|
||||
@@ -27,7 +27,7 @@ mkdir -p ${CACHE_DIR}
|
||||
git clone https://github.com/LadybirdBrowser/ladybird.git --depth 1
|
||||
cd ladybird
|
||||
# Grab and bootstrap the exact commit of vcpkg that trunk is using
|
||||
python3 ./Toolchain/BuildVcpkg.py
|
||||
python3 ./Meta/build_vcpkg.py
|
||||
|
||||
# Install the vcpkg.json in manifest mode from the root of the repo
|
||||
# Set the binary cache directory to the one we intend to use at container runtime
|
||||
|
||||
@@ -300,7 +300,7 @@ error: building skia:x64-linux failed with: BUILD_FAILED
|
||||
Elapsed time to handle skia:x64-linux: 1.6 s
|
||||
|
||||
-- Running vcpkg install - failed
|
||||
CMake Error at Toolchain/Tarballs/vcpkg/scripts/buildsystems/vcpkg.cmake:899 (message):
|
||||
CMake Error at Build/vcpkg/scripts/buildsystems/vcpkg.cmake:899 (message):
|
||||
vcpkg install failed. See logs for more information:
|
||||
Build/release/vcpkg-manifest-install.log
|
||||
Call Stack (most recent call first):
|
||||
|
||||
@@ -102,16 +102,10 @@ These belong in the `.vscode/settings.json` of Ladybird.
|
||||
// Excluding the generated directories keeps your file view clean and speeds up search.
|
||||
"files.exclude": {
|
||||
"**/.git": true,
|
||||
"Toolchain/Local/**": true,
|
||||
"Toolchain/Tarballs/**": true,
|
||||
"Toolchain/Build/**": true,
|
||||
"Build/**": true,
|
||||
},
|
||||
"search.exclude": {
|
||||
"**/.git": true,
|
||||
"Toolchain/Local/**": true,
|
||||
"Toolchain/Tarballs/**": true,
|
||||
"Toolchain/Build/**": true,
|
||||
"Build/**": true,
|
||||
},
|
||||
// Force clang-format to respect Ladybird's .clang-format style file. This is not necessary if you're not using the Microsoft C++ extension.
|
||||
|
||||
@@ -295,7 +295,6 @@ def configure_build_env(platform: Platform, preset: str) -> tuple[Path, Path]:
|
||||
sys.exit(1)
|
||||
|
||||
vcpkg_root = str(build_root_dir / "vcpkg")
|
||||
os.environ["PATH"] += os.pathsep + str(ladybird_source_dir.joinpath("Toolchain", "Local", "cmake", "bin"))
|
||||
os.environ["PATH"] += os.pathsep + vcpkg_root
|
||||
os.environ["VCPKG_ROOT"] = vcpkg_root
|
||||
if platform.host_architecture == HostArchitecture.riscv64:
|
||||
|
||||
@@ -16,7 +16,6 @@ find . \( \
|
||||
-o -name Patches \
|
||||
-o -name Ports \
|
||||
-o -name Root \
|
||||
-o -name Toolchain \
|
||||
-o -name Build \
|
||||
\) -prune \
|
||||
-o \( \
|
||||
|
||||
Reference in New Issue
Block a user