aboutsummaryrefslogtreecommitdiff
path: root/conftest.c
Commit message (Collapse)AuthorAgeFilesLines
* tcctools.c: integrate tiny_libmaker/_impdefgrischka2017-02-181-6/+16
| | | | | | | | | | | | | | usage: tcc -ar [rcsv] lib files... tcc -impdef lib.dll [-v] [-o lib.def] also: - support more files with -c: tcc -c f1.c f2.c ... - fix a bug which caused tcc f1.c f2.S to produce no asm - allow tcc -ar @listfile too - change prototype: _void_ tcc_set_options(...) - apply -Wl,-whole-archive when a librariy is given as libxxx.a also (not just for -lxxx)
* Revert all of my changes to directories & codingstyle.gus knight2015-07-291-0/+77
|
* Reorganize the source tree.gus knight2015-07-271-77/+0
| | | | | | | | | | * Documentation is now in "docs". * Source code is now in "src". * Misc. fixes here and there so that everything still works. I think I got everything in this commit, but I only tested this on Linux (Make) and Windows (CMake), so I might've messed something up on other platforms...
* Add arm64 (AArch64) as a target architecture.Edmund Grimley Evans2015-02-231-0/+2
|
* conftest: fix globbing to match MSVCAustin English2014-02-081-0/+4
|
* Add arm ABI detection in conftest.cThomas Preud'homme2013-02-141-1/+9
|
* Another attempt to "detect" multiarchThomas Preud'homme2013-02-141-9/+41
|
* configure: cleanupgrischka2013-02-141-0/+31
- add quotes: eval opt=\"$opt\" - use $source_path/conftest.c for OOT build - add fn_makelink() for OOT build - do not check lddir etc. on Windows/MSYS - formatting config-print.c - rename to conftest.c (for consistency) - change option e to b - change output from that from "yes" to "no" - remove inttypes.h dependency - simpify version output Makefile: - improve GCC warning flag checks tcc.h: - add back default CONFIG_LDDIR - add default CONFIG_TCCDIR also (just for fun) tccpp.c: - fix Christian's last warning tccpp.c: In function ‘macro_subst’: tccpp.c:2803:12: warning: ‘*((void *)&cval+4)’ is used uninitialized in this function [-Wuninitialized] That the change fixes the warning doesn't make sense but anyway. libtcc.c: - tcc_error/warning: print correct source filename/line for token :paste: (also inline :asm:) lddir and multiarch logic still needs fixing.