diff options
| author | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-08-01 15:39:38 +0200 |
|---|---|---|
| committer | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-08-01 15:39:38 +0200 |
| commit | 5e954fef32ec8b630132c230793e0f3faca34e0a (patch) | |
| tree | 9e4ca19dec0aaf02685b068dca81dcdc64808cb0 /libtcc.c | |
| parent | df9cce24a87442079d878978e56caa0787f37e1a (diff) | |
| download | tinycc-5e954fef32ec8b630132c230793e0f3faca34e0a.tar.gz tinycc-5e954fef32ec8b630132c230793e0f3faca34e0a.tar.bz2 | |
Set CONFIG_TCC_CRT_PREFIX relative to CONFIG_SYSROOT
Set CONFIG_TCC_CRT_PREFIX relative to CONFIG_SYSROOT for consistency
with CONFIG_TCC_LDDIR.
Diffstat (limited to 'libtcc.c')
| -rw-r--r-- | libtcc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1348,8 +1348,8 @@ LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type) if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) && !s->nostdlib) { if (output_type != TCC_OUTPUT_DLL) - tcc_add_file(s, CONFIG_TCC_CRT_PREFIX "/crt1.o"); - tcc_add_file(s, CONFIG_TCC_CRT_PREFIX "/crti.o"); + tcc_add_file(s, CONFIG_SYSROOT CONFIG_TCC_CRT_PREFIX "/crt1.o"); + tcc_add_file(s, CONFIG_SYSROOT CONFIG_TCC_CRT_PREFIX "/crti.o"); } #endif return 0; |
