diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2023-04-17 12:46:46 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2023-06-19 18:03:57 +0300 |
commit | b0d2a925849be8826ec5f18755a5aed743f5c72d (patch) | |
tree | 0cafe07707aeb97d71cc27ff0f7fe87281b8a9b1 /cross | |
parent | 23efc1abeac2a7b95e22aaeb6ca178b492bf5247 (diff) | |
download | meson-b0d2a925849be8826ec5f18755a5aed743f5c72d.zip meson-b0d2a925849be8826ec5f18755a5aed743f5c72d.tar.gz meson-b0d2a925849be8826ec5f18755a5aed743f5c72d.tar.bz2 |
Add kernel and subsystem properties to machine objects.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/iphone.txt | 2 | ||||
-rw-r--r-- | cross/tvos.txt | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/cross/iphone.txt b/cross/iphone.txt index 943b4c8..b7149c1 100644 --- a/cross/iphone.txt +++ b/cross/iphone.txt @@ -25,6 +25,8 @@ has_function_hfkerhisadf = false [host_machine] system = 'darwin' +subsystem = 'ios' +kernel = 'xnu' cpu_family = 'aarch64' cpu = 'aarch64' endian = 'little' diff --git a/cross/tvos.txt b/cross/tvos.txt index 016a589..6f6bfb5 100644 --- a/cross/tvos.txt +++ b/cross/tvos.txt @@ -22,6 +22,8 @@ has_function_hfkerhisadf = false [host_machine] system = 'darwin' +subsystem = 'tvos' +kernel = 'xnu' cpu_family = 'arm' cpu = 'arm64' endian = 'little' |