Search found 4171 matches

by DavidHart
Thu Oct 26, 2023 5:36 pm
Forum: Compiler / Linking / IDE Related
Topic: MONLOLITHIC=1 on Linux
Replies: 5
Views: 3150

Re: MONLOLITHIC=1 on Linux

Why people want a MONOLITHIC build? Its not gaining anything to them?
I know that, and you know that; but there seem to be lots of other people who think they want one.
by DavidHart
Wed Oct 25, 2023 6:46 pm
Forum: Compiler / Linking / IDE Related
Topic: MONLOLITHIC=1 on Linux
Replies: 5
Views: 3150

Re: MONLOLITHIC=1 on Linux

Hi, Two points: 1) I don't know why 'but not get one big library'. But then, you don't explain what you mean by that. What wx libs do you get? However, far more important is: 2) How compiling on linux a program for any distributions. You can't. Or at least, not unless it's a very trivial non-wx prog...
by DavidHart
Sun Oct 15, 2023 9:03 am
Forum: Announcements and Discoveries
Topic: wxGTK 3.2 debs and rpms available
Replies: 4
Views: 7485

Re: wxGTK 3.2 debs and rpms available

wx3.2.3 has now been released and I've again created packages for current and recent versions of the major distros. As with previous releases, for debian bullseye and bookworm, and ubuntu jammy, kinetic and mantis, there are repositories. There are rpms for fedora 38 and 39, and for openSUSE 15.5. M...
by DavidHart
Thu Oct 05, 2023 8:55 am
Forum: Compiler / Linking / IDE Related
Topic: Help wxSqlite3 on Linux
Replies: 4
Views: 3577

Re: Help wxSqlite3 on Linux

Hi,
I'd like to get a solution to use static libraries.
On Linux that's not a good idea and is rarely done. See e.g. this thread.


Regards,

David
by DavidHart
Wed Sep 27, 2023 5:09 pm
Forum: C++ Development
Topic: wxRenameFile() and filenames with spaces
Replies: 11
Views: 9288

Re: wxRenameFile() and filenames with spaces

Hi, FWIW, I just tried hacking a wxRenameFile into the wx3.2.0 'webrequest' sample (that being the only wx sample that uses wxRenameFile :shock: ). It was perfectly happy, and successful, doing: wxRenameFile("/path/to/Foo:bar.cpp", "/path/to/Foo:barbaz.cpp") You could try switchi...
by DavidHart
Sat Sep 02, 2023 9:33 pm
Forum: Compiler / Linking / IDE Related
Topic: The wxMedia library seems to be missing even though it should be installed
Replies: 3
Views: 2489

Re: The wxMedia library seems to be missing even though it should be installed

as for some reason --libs all or --libs all,media will not include the media library.
--libs all should include media; and it does here (debian).
by DavidHart
Sat Sep 02, 2023 8:53 pm
Forum: Compiler / Linking / IDE Related
Topic: The wxMedia library seems to be missing even though it should be installed
Replies: 3
Views: 2489

Re: The wxMedia library seems to be missing even though it should be installed

Hi,
I ran wx-config and got this:
How did you run it? I suspect you just did
wx-config --libs

Try
wx-config --libs all
or
wx-config --libs std,media

Regards,

David
by DavidHart
Thu Aug 24, 2023 9:24 pm
Forum: Compiler / Linking / IDE Related
Topic: installing wxwidgets from codelite
Replies: 15
Views: 3694

Re: installing wxwidgets from codelite

I understood that when I built and installed it goes to /usr/lib No, by default to /usr/local/. where do I try setting LD_LIBRARY_PATH? Probably initially it's best to just 'export' it in the terminal you're going to use. But first, look for where the wx libs really are. Are they under /usr/, or /u...
by DavidHart
Thu Aug 24, 2023 7:28 pm
Forum: Compiler / Linking / IDE Related
Topic: installing wxwidgets from codelite
Replies: 15
Views: 3694

Re: installing wxwidgets from codelite

but when I configure the cmake within vsCode or the cMake-gui I get... I'm not sure what you are trying to build there; CodeLite or...? I'm assuming below that it's not CodeLite. ../configure --enable-debug --with-gtk=3 ... sudo make install That means wx was installed to /usr/local/, not /usr. Not...
by DavidHart
Wed Aug 23, 2023 6:51 pm
Forum: Compiler / Linking / IDE Related
Topic: installing wxwidgets from codelite
Replies: 15
Views: 3694

Re: installing wxwidgets from codelite

I removed the webView refs from the install command and it was successful. Out of interest, why not try doing apt install for the other packages. If they install, it would confirm my suspicion. Two more questions that that may revel my level of knowledge... 1. What is Gentoo? A type of penguin . 2....
by DavidHart
Wed Aug 23, 2023 5:16 pm
Forum: Compiler / Linking / IDE Related
Topic: installing wxwidgets from codelite
Replies: 15
Views: 3694

Re: installing wxwidgets from codelite

They're definitely there, and sudo apt install libwxgtk-webview3.2unofficial-dev worked for me (or it would have done if it wasn't already installed). OTOH trying to install a rubbish name, libwxgtksdfgsdf-webview3.2unofficial-dev, gave a different error message to yours: E: Unable to locate package...
by DavidHart
Sun Aug 20, 2023 8:29 pm
Forum: Compiler / Linking / IDE Related
Topic: Static vs Dynamic exe's and static vs shared libs
Replies: 9
Views: 2660

Re: Static vs Dynamic exe's and static vs shared libs

I'm using strictly Linux Mint right now and my goal is to have an exe that can be run on any standard linux box.
Using a standard executable that's not possible. See the second half of this post
by DavidHart
Wed Aug 09, 2023 5:13 pm
Forum: Compiler / Linking / IDE Related
Topic: Need install programs for old versions of wxWidgets and MinGW
Replies: 4
Views: 1421

Re: Need install programs for old versions of wxWidgets and MinGW

as the developer is unfriendly, or rather, ignoring
I can tell you he's certainly not unfriendly; but he is overworked in his day-job.
by DavidHart
Wed Aug 09, 2023 12:32 pm
Forum: Compiler / Linking / IDE Related
Topic: Compile 32-bit on x86_64 Linux with gtk3
Replies: 6
Views: 1749

Re: Compile 32-bit on x86_64 Linux with gtk3

Hi,

I don't use RHEL, but this link suggests that you will need a devel package too:the 32 bit version of gtk3-devel-3.22.30-3.el8.x86_64.rpm or similar.

Regards,

David
by DavidHart
Sat Jul 29, 2023 3:03 pm
Forum: Compiler / Linking / IDE Related
Topic: How to set up Code::Blocks on Mac to run wxWidgets?
Replies: 20
Views: 1187

Re: How to set up Code::Blocks on Mac to run wxWidgets?

Hi, (I wrote this before I saw your update, but I'll post it anyway in case it helps others.) I've no Mac-specific knowledge, but I suspect Linux is similar enough that the following might help: Looking at configure.in, there's a section about zlib dnl We should test if built-in zlib library is aval...