The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Jussi Pakkanen 37bc124046 Clarified prebuilt object documentation. 10 years ago
..
freebsd-i386.o Added FreeBSD support for prebuilt object test. 11 years ago
linux-amd64.o Can use object files directly in targets. 11 years ago
linux-i386.o Added linux-i386 prebuilt object. 11 years ago
main.c Can use object files directly in targets. 11 years ago
meson.build Clarified prebuilt object documentation. 10 years ago
mingw-i386.obj Clarified prebuilt object documentation. 10 years ago
msvc-i386.obj Clarified prebuilt object documentation. 10 years ago
osx.o Made prebuilt object build on OSX. 11 years ago
readme.txt Clarified prebuilt object documentation. 10 years ago
source.c Can use object files directly in targets. 11 years ago

readme.txt

This test checks that a pre-existing object file can be used in projects.
In order to do this, we need prebuilt objects in the source dir. To enable
a new platform, the source file source.c needs to be compiled and then
the Meson file updated to use it.

The object needs to be built with no optimization and debug symbols enabled.
As an example, this is what a compile command with Gcc on x86 Linux would
look like:

gcc -c -g -o linux-i386.o source.c