diff options
| author | KreitinnSoftware <80591934+KreitinnSoftware@users.noreply.github.com> | 2024-02-14 05:14:01 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-14 09:14:01 +0100 |
| commit | 549e042e678e0909c1a79325fb406fb0081ccac7 (patch) | |
| tree | f05a9323a5d22d14f60c3ce3bc6f61b3d9a579fb /src | |
| parent | c70581abc9380ab57deba3f8076e26191b5c2755 (diff) | |
| download | box64-549e042e678e0909c1a79325fb406fb0081ccac7.tar.gz box64-549e042e678e0909c1a79325fb406fb0081ccac7.zip | |
[CI] Add Android Tests (#1263)
* [CI] Add Android Tests * Remove a Build of Box64 that I placed and forgot to remove before * Fix some tests checking * Disable Test07 and Test17 for now * Comment set_tests_proprieties (I have forgotten) * Add mmx test and benchfloat for Android * Fix build for Clang-17 on non-Termux * Update NDK to 26b and add Termux Build/Testing * Revert to NDK 25b, something is wrong * Add -DTERMUX=1 to Termux Build * Add LD_LIBRARY_PATH for Termux Testing * Set LD_LIBRARY_PATH on QEMU_SET_ENV * Move data folder to current dir before testing on Termux * Copy Termux Data Libs for /data * Try to set QEMU_SET_ENV on GITHUB_ENV --------- Co-authored-by: Pablo Carlos <pablo@localhost.localdomain>
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64runf30f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64runf30f.c b/src/emu/x64runf30f.c index 9f56441d..4c79bf8f 100644 --- a/src/emu/x64runf30f.c +++ b/src/emu/x64runf30f.c @@ -43,7 +43,7 @@ uintptr_t RunF30F(x64emu_t *emu, rex_t rex, uintptr_t addr) x64emu_t*emu = test->emu; #endif - #ifdef TERMUX + #ifdef __clang__ extern int isinff(float); extern int isnanf(float); #endif |