I can't confirm these problems. I even just have installed a freshly downloaded Linux Mint 17.3 Rosa x86 with Cinnamon (version with codecs). After running the following command in the terminal
Code: Select all
sudo apt-get install g++ libc6-dev libsdl1.2-dev libgtk-3-dev unixodbc-dev libgnome2-dev libxine2-dev libxxf86vm-dev
checkinstall.sh reported
checkinstall.sh wrote:Everything seems correctly setup for PureBasic !
Opening a window with PB 5.41 x86
Code: Select all
OpenWindow(0, 100, 100, 200, 170, "Demo window")
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
worked without any problems...
I also tested several other different Linux distributions with PB 5.41 without any problems:
- ElementaryOS 0.2 x86 with Pantheon
- Fedora 23 x86 Workstation with Gnome 3
- Kubuntu 14.04 x86 with KDE
- Linux Mint 14.04 x86 Qiana with Cinnamon
- Lubuntu 14.04 x86 with LXDE
- Ubuntu 14.04 x64 with KDE, Unity and Enlightenment E17
- Ubuntu 15.10 x86 with Unity
- Xubuntu 14.04 x86 with Xfce
chris319 wrote:I tried v 5.41 64 bits on Linux Mint Rosa.
Did you install the 64 bit version of Linux Mint Rosa? On a x64 version of Linux you are only able to run the x64 version of PureBasic. For running the 32 bit PB compiler you would have to install additionally a bunch of 32 bit compatibility libs...
chris319 wrote:I tried running v 5.11 32 bits. Now nothing compiles on any version of PB.
If you are using a 64 bit Linux Mint Rosa, PB 5.11 x86 won't work unless you have installed the necessary 32 bit compatibility libs...
You should also consider that PB 5.4x uses Gtk3 as default (you may change this by entering "gtk2" in Compiler/Compiler Options.../Library subsystem) while PB 5.3x and older use Gtk2 as default (you may change this by entering "gtk3" as subsystem).
What is your result when setting the subsystem in PB 5.41 to "gtk2"? To test this you have to additionally install libgtk2.0-dev:
Code: Select all
sudo apt-get install libgtk2.0-dev
I did all my tests with natively installed Linux distributions on real hardware. Is your Linux Mint Rosa running as a virtual machine or running natively on real hardware?