Skip to content

Introduce LINKER_DRIVER build setting into the PIF generation model #425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Sources/SWBProjectModel/PIFGenerationModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,7 @@ public enum PIF {
public var KEEP_PRIVATE_EXTERNS: String?
public var LD_RUNPATH_SEARCH_PATHS: [String]?
public var LIBRARY_SEARCH_PATHS: [String]?
public var LINKER_DRIVER: String?
public var CLANG_COVERAGE_MAPPING_LINKER_ARGS: String?
public var CURRENT_PROJECT_VERSION: String?
public var MACH_O_TYPE: String?
Expand Down
1 change: 1 addition & 0 deletions Sources/SwiftBuild/ProjectModel/BuildSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ extension ProjectModel {
case SWIFT_USER_MODULE_VERSION
case TAPI_DYLIB_INSTALL_NAME
case TARGETED_DEVICE_FAMILY
case LINKER_DRIVER
}

public enum MultipleValueSetting: String, CaseIterable, Sendable, Hashable, Codable {
Expand Down