From 83daed87061830a140dcbf425ffa78c0ac0f4d4c Mon Sep 17 00:00:00 2001 From: delthas Date: Sun, 19 Apr 2020 20:35:37 +0200 Subject: win32: Fix building executables with invalid entrypoints Windows builds of the GTK frontend use the pie flag to compile hexchat.exe. Windows needs an explicit entrypoint when compiling with --pie, otherwise an invalid executable is created. This sets the entrypoint of the executable on Windows (as it is currently set in the Visual Studio project files). This fixes a critical build issue which prevents all Windows builds using Meson from working. --- src/fe-gtk/meson.build | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/fe-gtk') diff --git a/src/fe-gtk/meson.build b/src/fe-gtk/meson.build index 1fe741ee..3dfc7427 100644 --- a/src/fe-gtk/meson.build +++ b/src/fe-gtk/meson.build @@ -80,6 +80,10 @@ resources = gnome.compile_resources('resources', extra_args: ['--manual-register'] ) +if host_machine.system() == 'windows' + hexchat_gtk_ldflags += '-Wl,-e,mainCRTStartup' +endif + executable('hexchat', sources: resources + hexchat_gtk_sources, dependencies: hexchat_gtk_deps, -- cgit 1.4.1