File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ public struct Triple: Encodable {
122
122
}
123
123
124
124
public static let macOS = try ! Triple ( " x86_64-apple-macosx " )
125
- public static let x86_64Linux = try ! Triple ( " x86_64-unknown-linux " )
125
+ public static let x86_64Linux = try ! Triple ( " x86_64-unknown-linux-gnu " )
126
126
public static let i686Linux = try ! Triple ( " i686-unknown-linux " )
127
127
public static let ppc64leLinux = try ! Triple ( " powerpc64le-unknown-linux " )
128
128
public static let s390xLinux = try ! Triple ( " s390x-unknown-linux " )
Original file line number Diff line number Diff line change @@ -1045,7 +1045,7 @@ def main():
1045
1045
build_target = "x86_64-apple-macosx"
1046
1046
elif platform .system () == 'Linux' :
1047
1047
if platform .machine () == 'x86_64' :
1048
- build_target = "x86_64-unknown-linux"
1048
+ build_target = "x86_64-unknown-linux-gnu "
1049
1049
elif platform .machine () == "i686" :
1050
1050
build_target = "i686-unknown-linux"
1051
1051
elif platform .machine () == 's390x' :
You can’t perform that action at this time.
0 commit comments