Ports: Add required Meson cross-files to The Powder Toy port

Previously the port would not build, as these files were mistakenly
ignored by Git.
This commit is contained in:
circl 2022-03-24 20:05:03 +01:00 committed by Linus Groh
parent c2d7ef057d
commit f1c28ea3e0
Notes: sideshowbarker 2024-07-17 16:48:30 +09:00
3 changed files with 34 additions and 0 deletions

2
Ports/powdertoy/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
!cross_file-i686.txt
!cross_file-x86_64.txt

View File

@ -0,0 +1,16 @@
[binaries]
c = 'i686-pc-serenity-gcc'
cpp = 'i686-pc-serenity-g++'
ar = 'i686-pc-serenity-ar'
ranlib = 'i686-pc-serenity-ranlib'
pkgconfig = 'pkg-config'
[properties]
sys_root = '../../../../Build/i686/Root'
needs_exe_wrapper = true
[host_machine]
system = 'serenity'
cpu_family = 'x86'
cpu = 'i686'
endian = 'little'

View File

@ -0,0 +1,16 @@
[binaries]
c = 'x86_64-pc-serenity-gcc'
cpp = 'x86_64-pc-serenity-g++'
ar = 'x86_64-pc-serenity-ar'
ranlib = 'x86_64-pc-serenity-ranlib'
pkgconfig = 'pkg-config'
[properties]
sys_root = '../../../../Build/x86_64/Root'
needs_exe_wrapper = true
[host_machine]
system = 'serenity'
cpu_family = 'x86'
cpu = 'x86_64'
endian = 'little'