aboutsummaryrefslogtreecommitdiff
path: root/tcc.c
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2014-01-07 15:23:54 +0800
committerThomas Preud'homme <robotux@celest.fr>2014-01-08 15:00:52 +0800
commitb6247d1f3c34e93e8603fddf5fc6da8dc6b81d00 (patch)
tree6515756dee0c2310d59990968675e145c5243651 /tcc.c
parent70a088af874076d8db5d7c2067afd8f2bcde0592 (diff)
downloadtinycc-b6247d1f3c34e93e8603fddf5fc6da8dc6b81d00.tar.gz
tinycc-b6247d1f3c34e93e8603fddf5fc6da8dc6b81d00.tar.bz2
Add support for runtime selection of float ABI
Diffstat (limited to 'tcc.c')
-rw-r--r--tcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.c b/tcc.c
index 58f9007..9b5ca2e 100644
--- a/tcc.c
+++ b/tcc.c
@@ -224,7 +224,7 @@ static void display_info(TCCState *s, int what)
print_paths("crt", s->crt_paths, s->nb_crt_paths);
print_paths("libraries", s->library_paths, s->nb_library_paths);
print_paths("include", s->sysinclude_paths, s->nb_sysinclude_paths);
- printf("elfinterp:\n %s\n", CONFIG_TCC_ELFINTERP);
+ printf("elfinterp:\n %s\n", DEFAULT_ELFINTERP(s));
break;
}
}