diff options
| author | Steven G. Messervey <nuke48386@yahoo.com> | 2015-04-15 22:56:21 -0400 |
|---|---|---|
| committer | Steven G. Messervey <nuke48386@yahoo.com> | 2015-04-15 22:56:21 -0400 |
| commit | aeaff94ec1dba0096d7b943ad7c963d9d574d922 (patch) | |
| tree | 590287410450e9dba0aab731b3db7792934abd8a /tcc.c | |
| parent | e50d68e4175d9ffa2915d67100ee8f9c5faf8cf1 (diff) | |
| download | tinycc-aeaff94ec1dba0096d7b943ad7c963d9d574d922.tar.gz tinycc-aeaff94ec1dba0096d7b943ad7c963d9d574d922.tar.bz2 | |
implement #pragma comment(lib,...)
Diffstat (limited to 'tcc.c')
| -rw-r--r-- | tcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -317,7 +317,7 @@ int main(int argc, char **argv) const char *filename = s->files[i] + 1; if (filename[0] == '-' && filename[1] == 'l') { if (tcc_add_library(s, filename + 2) < 0) { - tcc_error_noabort("cannot find '%s'", filename); + tcc_error_noabort("cannot find '%s'", filename+2); ret = 1; } } else { |
