andlabs / ui

Platform-native GUI library for Go.
Other
8.33k stars 651 forks source link

Master issue for MinGW-w64 ABI issues #281

Open andlabs opened 6 years ago

andlabs commented 6 years ago

libui on Windows is written in C++, which introduces a number of ABI issues. These vary in nature, but they cause a headache for package ui because we have no way of knowing ahead of time what MinGW people are going to use with it, and for some people, MinGW could have been installed for them by an IDE (like Code::Blocks).

The issues include:

But unlike #279, I have no idea what to do about this (which is why this is a separate issue), or where to begin with resolving this. The go tool won't help here, and I'm not sure if any facet of the above (and things not listed above) can be handled with, say, preprocessor options.

The issue with exception handling is that MinGW can be built to generate code using three possible C++ exception handling models (DWARF, SJLJ, and SEH), and IIRC there is no way to check at compile time which is being used (if there is this might be slightly easier), nor is there any way to build a multi-model binary (if there is I wouldn't know what it is).

I do wonder whether I need to strictly require MinGW-w64 or if any MinGW could do now that libui is statically linked into package ui.

(Now I'm starting to wonder if I have the same problems lurking around the corner in libui with MSVC...)

Minor note: some people seem to think the gcc version and the MinGW-w64 version are the same thing; they are not. Will need to point this out in the documentation that comes out of this issue and #279 as well...

llgoer commented 6 years ago

github.com/andlabs/ui

E:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0\libstdc++.a(vterminate .o):(.text$_ZN9gnu_cxx27verbose_terminate_handlerEv+0x5b): undefined referen ce to `imp_acrt_iob_func' E:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0\libstdc++.a(vterminate .o):(.text$_ZN9gnu_cxx27verbose_terminate_handlerEv+0xd7): undefined referen ce to `imp_acrt_iob_func' E:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0\libstdc++.a(vterminate .o):(.text$_ZN9gnu_cxx27verbose_terminate_handlerEv+0x114): undefined refere nce to `imp_acrt_iob_func' collect2.exe: error: ld returned 1 exit status

bcampbell commented 5 years ago

Just dumping some thoughts here - not sure if they're any use:

1) Probably don't want to be using SJLJ (setjmp/longjmp) exceptions ever. They've been obsolete since GCC 3.x. Can check at compile time with __USING_SJLJ_EXCEPTIONS__

2) libui's public interface is pure C anyway (extern "C" { etc etc). So C++ abi is a moot point. All the C++ stuff is handled inside libui. And I think GCC and MSVC mostly talk the same C ABI these days. So it shouldn't matter which compiler you generate the library with. In theory. Haha. (Of course - depending on how you build - they might require different runtime DLLs to be in the path, which can be irksome, but not a showstopper).

asinbow commented 5 years ago

I am cross-compiling from Mac to Windows by using mingw-w64. And I encountered and solved such problem when cross-compiling 386 *.exe with libui.a of dwarf format.

Here is my working log.
Conclusion