summaryrefslogtreecommitdiffstats
path: root/tests/freestanding.c
Commit message (Collapse)AuthorAgeFilesLines
* Add environment check for freestanding testTakayuki Matsuoka2022-11-091-1/+0
| | | | | | | | | | Freestanding test is intended to run on only Linux x86_64 platform. Because it uses Linux x86_64 syscall directly to avoid any dependency to the standard library. This changeset adds platform checking code to tests/Makefile to avoid unintended error in non-Linux x86_64 platforms. This changeset resolves issue #1186
* Fix: implement empty _start and main for non-Linux or x86-64 platformsTakayuki Matsuoka2022-08-071-4/+6
|
* Fix: Add extern "C" to all standard C replacement functionsTakayuki Matsuoka2022-08-071-13/+16
|
* Fix for ctocpptestTakayuki Matsuoka2022-08-071-13/+16
|
* Add LZ4_FREESTANDING test on Linux x86-64 platformTakayuki Matsuoka2022-08-071-0/+231
Also added tests/Makefile entry "test-freestanding".