-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
std.Target: add vita os #24527
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
base: master
Are you sure you want to change the base?
std.Target: add vita os #24527
Conversation
Co-authored-by: Alex Rønne Petersen <[email protected]>
.vita => { | ||
// LLVM doesn't support this target, so we | ||
// have to add this manually | ||
try argv.append("-D__vita__"); | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should rather go near where we define GLIBC_MINOR
and others.
@@ -261,6 +262,7 @@ const targets = [_]std.Target.Query{ | |||
.{ .cpu_arch = .thumb, .os_tag = .windows, .abi = .gnu }, | |||
.{ .cpu_arch = .thumb, .os_tag = .windows, .abi = .itanium }, | |||
.{ .cpu_arch = .thumb, .os_tag = .windows, .abi = .msvc }, | |||
.{ .cpu_arch = .thumb, .os_tag = .vita, .abi = .eabihf }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
V before W
.{ .cpu_arch = .arm, .os_tag = .vita, .abi = .eabihf }, | ||
// .{ .cpu_arch = .arm, .os_tag = .uefi, .abi = .eabi }, | ||
// .{ .cpu_arch = .arm, .os_tag = .uefi, .abi = .eabihf }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.{ .cpu_arch = .arm, .os_tag = .vita, .abi = .eabihf }, | |
// .{ .cpu_arch = .arm, .os_tag = .uefi, .abi = .eabi }, | |
// .{ .cpu_arch = .arm, .os_tag = .uefi, .abi = .eabihf }, | |
// .{ .cpu_arch = .arm, .os_tag = .uefi, .abi = .eabi }, | |
// .{ .cpu_arch = .arm, .os_tag = .uefi, .abi = .eabihf }, | |
.{ .cpu_arch = .arm, .os_tag = .vita, .abi = .eabihf }, |
No description provided.