Commit fcda0afd authored by Connor Abbott's avatar Connor Abbott Committed by Alexandre Julliard

winegcc: Support -Wl,foo=... style linker options.

In particular meson uses -Wl,--out-implib=... Signed-off-by: 's avatarConnor Abbott <cwabbott0@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b1fb07e1
......@@ -1982,7 +1982,7 @@ int main(int argc, char **argv)
if (strncmp("-Wl,", opts.args->base[i], 4) == 0)
{
unsigned int j;
strarray* Wl = strarray_fromstring(opts.args->base[i] + 4, ",");
strarray* Wl = strarray_fromstring(opts.args->base[i] + 4, ",=");
for (j = 0; j < Wl->size; j++)
{
if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment