summaryrefslogtreecommitdiff
path: root/test cases/nasm
AgeCommit message (Collapse)Author
2024-09-20nasm: Use different test sources for x86 and x86_64Kacper Słomiński
The x86 test files might not work on x86_64 Linux in certain cases, for example if the kernel is configured without support for x86 executables (which also gets rid of the old system call interface). Bug: https://bugs.gentoo.org/936911
2024-07-30tests: nasm: make it easier to debug generator() style buildEli Schwartz
By default, we build with debug info which can be useful for investigating why a test segfaults instead of either passing or failing. The nasm language hooks this up, but using nasm as a generator program does not. Bug: https://bugs.gentoo.org/936911
2024-04-09nasm test: Add a test for validating the Xcode backendL. E. Segovia
2024-04-09nasm test: Set the correct supported OSes for the testsL. E. Segovia
2023-10-02nasm tests: skip asm language test on Solaris & illumosAlan Coopersmith
The code in this test to make Linux system calls is not compatible with the SunOS kernel system call conventions.
2023-02-20nasm: Link with windows CRT libs when nasm is used as linker languageXavier Claessens
2023-01-18 Fix nasm when target has threads as added dependencyGijs Peskens
2022-10-25tests: Add nasm compiler checksXavier Claessens
2022-10-25nasm: Use an hello world test that works on 32bits tooXavier Claessens
Fixes: #10956
2022-10-24nasm: Harcode default path on WindowsXavier Claessens
NASM's installer does not add itself into PATH, even when installed by choco.
2022-10-24Add yasm as fallback for nasm languageXavier Claessens
2022-10-24Add NASM compilerXavier Claessens
2018-11-02extract_all_sources: Also include generated object filesXavier Claessens
Closes #4281.
2018-08-15Kill tabs dead! For good!Jussi Pakkanen
2018-06-18nasm test: use -no-pie (#3710)Mathieu Duponchelle
We were hitting the problem described by: https://stackoverflow.com/questions/43367427/32-bit-absolute-addresses-no-longer-allowed-in-x86-64-linux See the first answer for a detailed explanation Fixes https://github.com/mesonbuild/meson/issues/3707
2018-06-01configure_file: Add output_format kwarg (#3636)Mathieu Duponchelle
* configure_file: Add output_format kwarg * docs: Reference-manual.md output_format was added in 0.47 [skip ci]