Commit 470bd0c2 authored by Alexandre Julliard's avatar Alexandre Julliard

winegcc: Add support for building native subsystem libraries.

Based on a patch by Zebediah Figura. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 0b90dc78
...@@ -210,6 +210,7 @@ struct options ...@@ -210,6 +210,7 @@ struct options
const char* image_base; const char* image_base;
const char* section_align; const char* section_align;
const char* lib_suffix; const char* lib_suffix;
const char* subsystem;
strarray* prefix; strarray* prefix;
strarray* lib_dirs; strarray* lib_dirs;
strarray* linker_args; strarray* linker_args;
...@@ -913,7 +914,19 @@ static void build(struct options* opts) ...@@ -913,7 +914,19 @@ static void build(struct options* opts)
else else
{ {
strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole"); strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
}
if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs"); if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
if (opts->nostartfiles) strarray_add(link_args, "-nostartfiles" );
if (opts->subsystem)
{
strarray_add(link_args, strmake("-Wl,--subsystem,%s", opts->subsystem));
if (!strcmp( opts->subsystem, "native" ))
{
const char *entry = opts->target_cpu == CPU_x86 ? "_DriverEntry@8" : "DriverEntry";
strarray_add(link_args, strmake( "-Wl,--entry,%s", entry ));
}
} }
for ( j = 0 ; j < opts->linker_args->size ; j++ ) for ( j = 0 ; j < opts->linker_args->size ; j++ )
...@@ -1070,6 +1083,12 @@ static void build(struct options* opts) ...@@ -1070,6 +1083,12 @@ static void build(struct options* opts)
if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" ); if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
} }
if (opts->subsystem)
{
strarray_add(spec_args, "--subsystem");
strarray_add(spec_args, opts->subsystem);
}
for ( j = 0; j < lib_dirs->size; j++ ) for ( j = 0; j < lib_dirs->size; j++ )
strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j])); strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
...@@ -1211,19 +1230,11 @@ static void forward(int argc, char **argv, struct options* opts) ...@@ -1211,19 +1230,11 @@ static void forward(int argc, char **argv, struct options* opts)
strarray_free (args); strarray_free (args);
} }
/*
* Linker Options
* object-file-name -llibrary -nostartfiles -nodefaultlibs
* -nostdlib -s -static -static-libgcc -shared -shared-libgcc
* -symbolic -Wl,option -Xlinker option -u symbol
* -framework name
*/
static int is_linker_arg(const char* arg) static int is_linker_arg(const char* arg)
{ {
static const char* link_switches[] = static const char* link_switches[] =
{ {
"-nostartfiles", "-nostdlib", "-s", "-nostdlib", "-s", "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
"-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
"-framework", "--coverage", "-fprofile-generate", "-fprofile-use" "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
}; };
unsigned int j; unsigned int j;
...@@ -1600,6 +1611,11 @@ int main(int argc, char **argv) ...@@ -1600,6 +1611,11 @@ int main(int argc, char **argv)
opts.large_address_aware = 1; opts.large_address_aware = 1;
continue; continue;
} }
if (!strcmp(Wl->base[j], "--subsystem") && j < Wl->size - 1)
{
opts.subsystem = strdup( Wl->base[++j] );
continue;
}
if (!strcmp(Wl->base[j], "-static")) linking = -1; if (!strcmp(Wl->base[j], "-static")) linking = -1;
strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j])); strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
} }
......
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