-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce disk space consumed after running fetchDependencies.
- Add --keep-cache option to control whether or not to retain the External/build/Intermediates directory (default not retained). - Export KEEP_CACHE & SKIP_PACKAGING to be available within scripts used by ExternalDependencies Xcode builds. - Move BLD_SPECIFIED to build() instead of build_impl() to avoid updating it from background thread (which will fail). - Update MoltenVK version to 1.2.7 (unrelated). - Add CompilerMSL::Options::replace_recursive_inputs to pipeline cache (unrelated). - Update GitHub CI to Xcode 15.0. - Update Whats_new.md document.
- Loading branch information
1 parent
9e4ee9e
commit e693a0a
Showing
8 changed files
with
42 additions
and
8 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
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
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,12 +1,20 @@ | ||
#!/bin/bash | ||
|
||
if [ "${SKIP_PACKAGING}" = "Y" ]; then exit 0; fi | ||
|
||
set -e | ||
|
||
export MVK_EXT_LIB_DST_PATH="${PROJECT_DIR}/External/build/" | ||
|
||
# Assign symlink to Latest | ||
ln -sfn "${CONFIGURATION}" "${MVK_EXT_LIB_DST_PATH}/Latest" | ||
|
||
# Remove the large Intermediates directory if no longer needed | ||
if [ "${KEEP_CACHE}" != "Y" ]; then | ||
echo Removing Intermediates library at "${MVK_EXT_LIB_DST_PATH}/Intermediates" | ||
rm -rf "${MVK_EXT_LIB_DST_PATH}/Intermediates" | ||
fi | ||
|
||
# Clean MoltenVK to ensure the next MoltenVK build will use the latest external library versions. | ||
make --quiet clean | ||
|
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