28 Aug
2017
28 Aug
'17
7:41 p.m.
Hello wine-devel, I'm running ArchLinux with gcc 7.2.0. Since commit e99811aee2dff88c41d6e2875401810a85325839 wine fails to build with
../../../wine-git/dlls/kernel32/module.c: In function ‘load_library’: ../../../wine-git/dlls/kernel32/module.c:987:44: error: initializer element is not constant static const DWORD unsupported_flags = load_library_search_flags |
Minimal test-program to show the error, just use something like "gcc main.c" to compile. ---------- static const int load_library_search_flags = 0; int main() { static const int unsupported_flags = load_library_search_flags; return 0; } ---------- Looks like an compiler error, but I'm not sure. Mind looking into that? Regards, Fabian Maurer