2020-10-15 21:16:52 +09:00
|
|
|
interface Triple {
|
|
|
|
platform: string
|
|
|
|
arch: string
|
|
|
|
abi: string | null
|
|
|
|
platformArchABI: string
|
|
|
|
raw: string
|
|
|
|
}
|
|
|
|
|
2021-07-22 14:35:01 +09:00
|
|
|
export const platformArchTriples: {
|
|
|
|
[index: string]: {
|
|
|
|
[index: string]: Triple[]
|
2020-10-15 21:16:52 +09:00
|
|
|
}
|
|
|
|
}
|