libtcc: Support -soname for the linker

--
By  by ... Detlef
master
Detlef Riekenberg 2010-04-05 21:37:54 +02:00
parent 78e83d8761
commit 87574de8ed
1 changed files with 3 additions and 0 deletions

View File

@ -1456,6 +1456,9 @@ PUB_FUNC const char * tcc_set_linker(TCCState *s, const char *option, int multi)
s->rpath = p;
} else if (strstart(option, "--section-alignment,", &p)) {
s->section_align = strtoul(p, &end, 16);
} else if (strstart(option, "-soname,", &p)) {
s->soname = p;
multi = 0;
#ifdef TCC_TARGET_PE
} else if (strstart(option, "--subsystem,", &p)) {
#if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)