Skip to content
Li Shengqiu edited this page Jan 9, 2018 · 6 revisions

Welcome to the wxGo wiki!

Index

FAQ

Windows

Why my program is so large?

ld.exe in all of the MinGW versions that I have tested does not work fine with -s option when compiling wxGo. This option will strip debug symbols to reduce the size of binaries. On Linux and Mac, -s option is added by default in the setup_*.go.

Why my program looks so ugly, and blurry on HiDPI monitors?

See Fix visual style issues on Windows.

Linux

Can I use Gtk2 backend of wxWidgets?

Currently only 64bit version of wxgtk2 is included in wxGo. You can use -tags gtk2 to enable it, i.e go get -x -tags gtk2 github.com/dontpanic92/wxGo/wx.