Skip to content

Commit df35f22

Browse files
committed
fix: support xcode 15
1 parent 5f795bd commit df35f22

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

Sources/BuildScripts/XCFrameworkBuild/base.swift

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,11 +1187,9 @@ enum Utility {
11871187
if ProcessInfo.processInfo.environment.keys.contains("GITHUB_ACTION") {
11881188
// if build FFmpeg failed, print the ffbuild/config.log content
11891189
if logURL.path.contains("FFmpeg") {
1190-
var ffbuildLogURL = logURL
1191-
ffbuildLogURL.deletePathExtension()
1192-
print(ffbuildLogURL.path)
1193-
ffbuildLogURL = ffbuildLogURL.appendingPathComponent("ffbuild/config.log")
1194-
print(ffbuildLogURL.path)
1190+
let ffbuildLogURL = logURL
1191+
.deletingPathExtension()
1192+
.appendingPathComponent("ffbuild/config.log")
11951193
if FileManager.default.fileExists(atPath: ffbuildLogURL.path) {
11961194
if let content = String(data: try Data(contentsOf: ffbuildLogURL), encoding: .utf8) {
11971195
print("############# \(ffbuildLogURL) CONTENT BEGIN #############")

Sources/BuildScripts/XCFrameworkBuild/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ enum Library: String, CaseIterable {
8080
case .libdovi:
8181
return "3.3.0"
8282
case .vulkan:
83-
return "1.4.0"
83+
return "1.4.0-fix"
8484
case .libshaderc: // compiling GLSL (OpenGL Shading Language) shaders into SPIR-V (Standard Portable Intermediate Representation - Vulkan) code
8585
return "2025.4.0"
8686
case .libuchardet:

0 commit comments

Comments
 (0)