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.
This commit is contained in:
parent
5d5838e712
commit
83daed8706
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user