Author Topic: wxWidgets 3.0.3 released  (Read 14883 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
wxWidgets 3.0.3 released
« on: May 04, 2017, 06:57:57 am »
Since wxWidgets 3.0.3 released; I am going to once more try to fix the CB Projects and Wizards to use the wxTeam prebuilt binaries. Maybe this time, I will finish it and have a CB Dev like the way I do at least part of the work.

https://github.com/wxWidgets/wxWidgets/releases/tag/v3.0.3

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #1 on: May 04, 2017, 07:37:46 am »
Yesterday I have tried to build CB with it : mixed results.

Environment :
- Win 10 (64 bit)
- TDM-gcc 5.1.0 ==> which creates by default 64 bit targets (I used it like that)

I build wx like I used to build the 2.8.12, that is like described on the nightly cookbook. ==> no problems
Quote
I did NOT specify -std=c++11 !!!!
(need to investigate if this is not the default gcc 5.1, otherwise my build of wx is not correct)

Then I build CB by using the wx30_64 workspace.
Quote
The project files of the wx30_64 explicitly specify -std=c++11

The build failed because the fortran plug-in does not compile, it needs in parserf.cpp to include <wx/regex.h>.

The I can launch the freshly build CB, it comes up nicely, but without any interaction a few seconds later it crashes.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: wxWidgets 3.0.3 released
« Reply #2 on: May 04, 2017, 08:24:39 am »
Edit4: Deleted wxWidgets message that went away after I deleted the MSys2 GCC 6.3.0 DLLs.

The MinGW32 GCC TDM 5.1.0 gets the above message using the wxTeam built binary with edited project.
Now, it looks like I need to build wxWidgets using my "MinGW32 GCC TDM 5.1.0" to see if the error was caused by a compiler version/build type issue.

Edit: It never really displays the CB IDE before it crashes.
Edit3: It stopped crashing after I deleted the DLLs left over from the MSys2 GCC 6.3.0 testing.
Edit2: Testing on Windows 10 32 bit.

NOTE: The wxTeam used the flags below to build their GCC 510TDM binary
Code
CXXFLAGS=-fno-keep-inline-dllexport -std=gnu++11 

Tim S.
« Last Edit: May 04, 2017, 08:44:37 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #3 on: May 04, 2017, 12:16:57 pm »
as for gcc, I think the default mode in 5.x is not "c++11", in 6.x it became "The default mode for C++ is now -std=gnu++14 instead of -std=gnu++98".

So I think indeed when we build wx with the 5.x we should clearly specify the standard we want to use.
I think it is best to stick to official standard and not gnu extension ==> -std=c++11

So when mixing what you saw from wxTeam (no idea what wxTeam is ) and our cookbook we should get something like:

Code
CXXFLAGS+=-fpermissive -fno-keep-inline-dllexport -std=c++11

Need to see what the correct syntax is to end up with the following invocation for building wx :

Code
mingw32-make -f makefile.gcc SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 vendor=CB CXXFLAGS+=-fpermissive -fno-keep-inline-dllexport -std=gnu++11

should it it be CXXFLAGS+="blablablablabla ablablalb "  ?

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: wxWidgets 3.0.3 released
« Reply #4 on: May 04, 2017, 05:51:19 pm »
This is the syntax I think it should use.

Code
CXXFLAGS="-fpermissive -fno-keep-inline-dllexport -std=gnu++11"

Full command below:
Code
mingw32-make -f makefile.gcc SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 vendor=CB CXXFLAGS="-fpermissive -fno-keep-inline-dllexport -std=gnu++11"

Edit: I am using wxTeam in place of the wxWidgets development team; in this exact case I mean the sub-set of people who created the wxWidgets multilib binaries I am using.

« Last Edit: May 04, 2017, 05:59:52 pm by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #5 on: May 05, 2017, 07:27:54 am »
note that out cookbook says += instead of =  for CXXFLAGS, we want to append our settings, and not just overwrite.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #6 on: May 05, 2017, 09:17:00 am »
The append is useful probably if you already have an env variable named CXXFLAGS.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #7 on: May 05, 2017, 09:32:46 am »
correct, but I have no clue if wx might already have if defined itself somewhere in its makefiles ....

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #8 on: May 05, 2017, 01:16:57 pm »
This won't make a difference in this case. The old value should be taken from the environment and not from the makefile.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #9 on: May 06, 2017, 07:14:21 pm »
I have done a new build.

Windows 10 64-bit
TDM-GCC 5.1.0 (by default builds 64-bit applications)

Wx 3.0.3

Wx build as :
Code
mingw32-make -f makefile.gcc SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 VENDOR=cb CXXFLAGS+="-fpermissive -fno-keep-inline-dllexport -std=c++11"

And then build CB (and plug-ins) based on : CodeBlocks_wx30_64.workspace

It all builds.

Launch CB ==> entire GUI comes up, and after a few seconds CB crashed (so not doing anything at all in CB).

When launching the outcome in "devel30_64" (so not stripping), this is rpt info (some snippets from it) :
Code
Error occurred on Saturday, May 6, 2017 at 15:24:08.

codeblocks.exe caused an Access Violation at location 0000000064520BD0 in module wxmsw30u_gcc_cb.dll Reading from location 0000000000000019.

AddrPC           Params
0000000064520BD0 0000000000000000 0000000000000000 0000000000000070  wxmsw30u_gcc_cb.dll!wxDropTarget::Revoke
0000000064555A80 00007FFA05FFBE53 8000001000000000 0000000000000000  wxmsw30u_gcc_cb.dll!wxWindow::HandleDestroy
0000000064561975 0000000000000002 0000000000000000 000000001D82BC50  wxmsw30u_gcc_cb.dll!wxWindow::MSWHandleMessage
0000000064551B8C 00003F491629097D 0000000000000001 0000000000000000  wxmsw30u_gcc_cb.dll!wxWindow::MSWWindowProc
0000000064608931 0000000080000010 0000000000000001 0000000000000000  wxmsw30u_gcc_cb.dll!wxTextCtrl::MSWWindowProc
00007FFA05FFBC50 0000000000000388 0000000064559F90 00000000001206E6  USER32.dll!UserCallWinProcCheckWow
00007FFA05FFB94C 0000000000000000 0000000000000000 0000000000000000  USER32.dll!DispatchClientMessage
00007FFA060111F3 0000000000000080 00007FFA06071000 00007FFA02E223C4  USER32.dll!__fnDWORD
00007FFA067F90B4 000000006455A564 0000000003BE19A0 00000000652B9C80  ntdll.dll!KiUserCallbackDispatch
00007FFA02E223C4 0000000003BE19A0 00000000652B9C80 00000000652B9C80  win32u.dll!NtUserDestroyWindow
000000006455A564 0000000002228DE0 00000000652880E0 00000000652880E0  wxmsw30u_gcc_cb.dll!wxWindow::~wxWindow
00000000004ACAC8 0000000003BE19A0 000000000F9EA100 000000006528DD50  codeblocks.exe! ??   [D:/Codeblocks/src/src/splashscreen.cpp @ 181]
   179: }
   180:
>  181: cbSplashScreen::~cbSplashScreen()
   182: {
   183:     m_timer.Stop();
00000000004ACAF7 0000000003BE19A0 00000000019BF990 0000000065288120  codeblocks.exe! ??   [D:/Codeblocks/src/src/splashscreen.cpp @ 184]
   182: {
   183:     m_timer.Stop();
>  184: }
   185:
0000000064303477 0000000000000000 0000000000000000 0000000000000008  wxmsw30u_gcc_cb.dll!wxAppConsoleBase::DeletePendingObjects
00000000643034E5 0000000000000012 0000000000000008 000000000FD44740  wxmsw30u_gcc_cb.dll!wxAppConsoleBase::ProcessIdle
000000006462A011 0000000065288120 00007FFA06459A00 0000000000000000  wxmsw30u_gcc_cb.dll!wxAppBase::ProcessIdle
000000006433D7F9 0000000002228DE0 000000000FD44740 00000000019BFBA0  wxmsw30u_gcc_cb.dll!wxEventLoopManual::DoRun
000000006433D3FD 0000000000000006 0000000200000006 000000001D947960  wxmsw30u_gcc_cb.dll!wxEventLoopBase::Run
0000000064307F0A 000000000000000E 00000000021E19B0 0000000000000000  wxmsw30u_gcc_cb.dll!wxAppConsoleBase::MainLoop
0000000000404F56 0000000002228DE0 0000000000400000 0000000000000001  codeblocks.exe!OnRun  [D:/Codeblocks/src/src/app.cpp @ 850]
   848:     try
   849:     {
>  850:         int retval = wxApp::OnRun();
   851:         // wx 2.6.3 docs says that OnRun() function's return value is used as exit code
   852:         return m_Batch ? m_BatchExitCode : retval;
0000000064387ADA 00000000019BFDE0 0000000000400000 000000000221EB90  wxmsw30u_gcc_cb.dll!wxEntryReal
00000000644794D4 0000000000000000 000000000000002C 000000000000002C  wxmsw30u_gcc_cb.dll!wxEntry
0000000000402205 0000000000400000 0000000000000000 00000000000E395E  codeblocks.exe!WinMain  [D:/Codeblocks/src/src/app.cpp @ 322]
   320: } // namespace
   321:
>  322: IMPLEMENT_APP(CodeBlocksApp) // TODO: This gives a "redundant declaration" warning, though I think it's false. Dig through macro and check.
   323:
   324: BEGIN_EVENT_TABLE(CodeBlocksApp, wxApp)
00000000004013E8 0000000000000000 0000000000000000 0000000000000000  codeblocks.exe!__tmainCRTStartup  [C:/crossdev/src/mingw-w64-v4-git/mingw-w64-crt/crt/crtexe.c @ 332]
00000000004014EB 0000000000000000 0000000000000000 0000000000000000  codeblocks.exe!WinMainCRTStartup  [C:/crossdev/src/mingw-w64-v4-git/mingw-w64-crt/crt/crtexe.c @ 184]
00007FFA03EC2774 0000000000000000 0000000000000000 0000000000000000  KERNEL32.DLL!BaseThreadInitThunk
00007FFA067C0D61 0000000000000000 0000000000000000 0000000000000000  ntdll.dll!RtlUserThreadStart

Could this indicate that something is going wrong in the destruction (closing) of the splash screen ?

Anyone else having a working build with Win10 (64 bit) and wx 3.0.3 ?

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: wxWidgets 3.0.3 released
« Reply #10 on: May 06, 2017, 08:16:34 pm »
Quote
Anyone else having a working build with Win10 (64 bit) and wx 3.0.3 ?

Will Windows 7 (64 bit) and wx 3.0.3, help?

If yes, I could build on a old laptop (if it works long enough).

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #11 on: May 06, 2017, 08:44:18 pm »
Well the idea is to have CB officially switch to wx 3.0.3 and ditch wx 2.8.12.

But then we need to get a working CB (nightly), in the end I will probably then make the nightlies on my Win10 partition (64 bit), instead of on my old WinXp32bit virtual box. I might make sense to no longer provide 32 bit.
But my build crashes, so it would be interesting to know if anyone out there on windows can get to a success with wx 3.0.3, and then 64bit, ....

So I think a win7 is already at starting point, I assuming the problem is more CB and wx 3.0.3, and 64 bit (and not so much win7 versus win10) ....

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #12 on: May 06, 2017, 09:11:17 pm »
when I commented out the lines interacting with the "Splash" class in the OnInit method in app.cpp, then CB starts OK.

Then I activated them again, and that build is indeed crashing again.
« Last Edit: May 06, 2017, 09:14:02 pm by killerbot »

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #13 on: May 06, 2017, 11:56:11 pm »
Isn't the idea to switch directly to 3.1 on windows? 3.0.3 doesn't have hidpi support as far as I know.

Have you tried to use full debug build (both cb and wx build in debug mode) inside a debugger?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #14 on: May 07, 2017, 09:32:16 am »
I think I saw the same problem months ago with 3.1.

Note that 3.1 is not an official release, it is a development release, which has been the objection in the past not to go straight to this one ?

Offline icequan233

  • Multiple posting newcomer
  • *
  • Posts: 31
Re: wxWidgets 3.0.3 released
« Reply #15 on: May 08, 2017, 07:08:10 am »
Another quesition: the codeblocks editor has some problem on hidpi, http://forums.codeblocks.org/index.php/topic,21789.0.html ,It seems our editor don't support hidpi,
the wxscintilla implement with scintilla based on wxWidgets, but the latest version of scintilla is imcompatible with our version(3.5.3), too many code need be updated in cb. but the wxstyledtextctrl
almost same with wxscintilla(???), Is it possible use wxstyledtextctrl? or has anyone update the code of wxscintilla? Thanks.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #16 on: May 08, 2017, 11:44:04 am »
Is it possible use wxstyledtextctrl? or has anyone update the code of wxscintilla?
No and no, but I plan to try soon.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: wxWidgets 3.0.3 released
« Reply #17 on: May 22, 2017, 11:28:52 am »
Hi,
I tried to build CB with wxwidgets 3.0.3 and 3.1, but in 32 bits. Same problem : CB crash a few second after starts and almost same crash report as mentionned by killerbot.
In my case, I compile with TDM 4.9.2 version (I don't use 5.1 version, because of a bugged gfortran and I prefer to have only one set of compilers for my standard work !).
I also tried some newer windows gnu compilers (officials MinGW 6.2, 6.3 or 7.1, found on https://sourceforge.net/projects/mingw-w64/files/?source=navbar)
With 6.2, same CB problem, same crash.
With 6.3 and 7.1, there is already a problem in wxwidgets compilation (at link time), so no way to build CB (a double definition inside libuuid.a, strange !).

More, I have a question probably out of this topic :
I seems that TDM versions are more or less abandoned (I'm not sure, but I think so).
Have you (CB developpers) plans for MinGW compilers recommandations on Windows : which version, win32/posix, sjlj/dwarf/seh ...
For my tests, I tried posix-sjlj for 32 bits versions, and posix-seh for 64 bits versions, but I'm not sure it's the good (or best) choice.
I also tested with win32-sjlj but this makes no difference concerning CB crash or wxwidgets link error as far as I can see.

gd_on
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: wxWidgets 3.0.3 released
« Reply #18 on: May 22, 2017, 11:43:15 am »
With 6.3 and 7.1, there is already a problem in wxwidgets compilation (at link time), so no way to build CB (a double definition inside libuuid.a, strange !).

I traced the likely caused of the linking error of the Monolithic wxwidgets shared/DLL build to the MinGW64 C Runtime Library.
(I forget if I saw the issue with Monolithic wxwidgets static build; I really think that build makes no sense; and, rarely test it.)

I have yet to post in the MinGW64 mail/newsgroup to find out how to submit the fix and what type of fix the MinGW64 people would want. If you are using MSys2, I created a patch to fix the issue under it.

Edit: I read about a work around on the issue today; I will try to find it.
From https://github.com/Alexpux/MINGW-packages/issues/1761
Quote
I have found a workaround. Just pass the --allow-multiple-definition option to ld (use the -Wl, gcc option for that).
Not had time to test that work around.

Tim S.

« Last Edit: May 22, 2017, 11:47:56 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: wxWidgets 3.0.3 released
« Reply #19 on: May 22, 2017, 01:41:31 pm »
With the suggested "workaround", it's better to build wxwidgets 3.1 with MinGW 7.1.
I added LDFLAGS="-Wl,--allow-multiple-definition" on the make line.
Neverthess, when I try to build the samples tests cases, it compiles, but crashes when I launch executables ! :-[

And I "only" use Msys 1, so the patch may be not relevant.

And finally, no success to build CB until now : some incompatibilities in libwxmsw31u.a. I have added the -Wl,--allow-multiple-definition in linker option, but it's not sufficient.
I have to search more to find what's wrong.

gd_on
« Last Edit: May 22, 2017, 01:46:16 pm by gd_on »
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: wxWidgets 3.0.3 released
« Reply #20 on: May 23, 2017, 06:51:25 pm »
Finally, succeeded to build CB svn 11064 with wxwidgets 3.0.3, in 32 and 64 bits.
wxwidget has to be linked with the option  -Wl,--allow-multiple-definition as told previously.
And you must launch CB with the -ns command option to avoid a crash after startup.
Tested with TDM compilers 4.9.2 and standard MinGW compilers 6.3.0 (but in that case problem when compiling fortran project in parserf.cpp).

gd_on
« Last Edit: May 23, 2017, 07:16:40 pm by gd_on »
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #21 on: May 23, 2017, 06:59:27 pm »
-ns, is indeed the same what I have concluded, it crashes in the destruction of the splash screen.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #22 on: June 04, 2017, 09:30:21 am »
@killerbot: Any progress with the wx3.x based night builds?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: wxWidgets 3.0.3 released
« Reply #23 on: June 19, 2017, 06:44:25 pm »
svn 11090 looks OK on Windows.
No crash at startup so no need for -ns option (or code modification as tested by killerbot).

Thanks d_anselmi  ;)

gd_on
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #24 on: June 19, 2017, 08:33:36 pm »
I will test again, the fix of that commit is in the SpellChecker ....

Offline danselmi

  • Developer
  • Almost regular
  • *****
  • Posts: 203
Re: wxWidgets 3.0.3 released
« Reply #25 on: June 20, 2017, 01:22:36 am »
It's not fixed yet. It doesn't crash at startup but SpellChecker is not working as intentended.
I got a workaround which is working with 3.0.3 on windows(see attachment). Not tested on Linux nor with 2.8.12.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #26 on: June 20, 2017, 08:37:28 am »
@danselmi: Would it be possible to commit multiple changes in separate commits in the future? Your fix in the last commit is buried in tons of formatting changes and it is impossible to find what you've changed using online difftools (at sf and github).

For this patch: What is the problem you're trying to fix? You need to show a dialog if there are no dictionaries?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #27 on: July 09, 2017, 11:39:13 pm »
I retested with today state of the code in svn. I can reactivate the splash code and CB starts nicely.

HOWEVER now I get an assert.

../../src/msw/bitmap.cpp(922): assert "image.IsOk()" failed in CreateFromImage(): invalid image

==> when hitting cancel CB continues to start (note this has nothing to do with splash screen, since I still got that when the splash screen code was commented out).



LOOKING IN cb LOG

Quote
23:44:35: Cannot load resources from 'memory:Cccc.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:CppCheck.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:Cscope.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:DoxyBlocks.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:EditorConfig.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:headerfixup.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:ThreadSearch.zip#zip:*.xrc'.
23:44:35: Cannot load resources from 'memory:ToolsPlus.zip#zip:*.xrc'.
23:44:36: Cannot load resources from 'memory:wxSmithAui.zip#zip:*.xrc'.

OR

Quote
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\Cccc.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\CppCheck.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\Cscope.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\DoxyBlocks.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\EditorConfig.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\headerfixup.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\ThreadSearch.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\ToolsPlus.zip'.
Manager failed to load XRC resource 'D:\Codeblocks\src\output30_64\share\codeblocks\wxSmithAui.zip'.
===> this was already there on 22 April 2017 (svn rev 11053)
and also:

Quote
FortranProject plugin error: file D:\Codeblocks\src\output30_64\share\codeblocks/images/fortranproject/fortran_intrinsic_modules.f90 was not found.
FortranProject plugin error: file D:\Codeblocks\src\output30_64\share\codeblocks/images/fortranproject/fortran_procedures.f90 was not found.

and

Quote
SpellCheck Plugin: Error loading Online SpellChecking Configuration file "D:\Codeblocks\src\output30_64\share\codeblocks\SpellChecker\OnlineSpellChecking.xml"
SpellChecker: Thesaurus files 'D:\Codeblocks\src\output30_64\share\codeblocks\SpellChecker\th_en_US.idx' not found!
The thesaurus not found message was there already on 22 April.

The source code around 22 April did not have several of these problems.

For reminder : tdm-gcc 5.1, wx 3.0.3, 64 bit builds on Win10 64 bit.
« Last Edit: July 10, 2017, 01:17:50 pm by killerbot »

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #28 on: July 10, 2017, 08:30:43 am »
You can find what triggers the assert if you a debugger and hit the stop button in the assert dialog.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: wxWidgets 3.0.3 released
« Reply #29 on: July 10, 2017, 07:38:40 pm »
I obtain almost the same problems as Killerbot except the assert message : no assert for me.
The missing xrc does not seem to be a problem : plugins are loaded and seem to work. Effectively, in those zip files there are no .xrc files. No such messages with wx 2.8 (and no .xrc files too !).
I have not seen the message concerning fortran plugin (.f90 files missing).
The missing file th_en_US.idx is not specific to wx 30. I have also it with wx 2.8, but for me no problem with OnlineSpellChecking.xml. A possible solution : install LibreOffice.
I compiled wx 30 and CB with official MinGW 6.3 version in 32 and 64 bits.

gd_on
« Last Edit: July 11, 2017, 08:35:53 am by gd_on »
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #30 on: July 11, 2017, 10:38:10 am »
those resource warnings/errors also occur on linux, proba lby new way of loading in wx3.

On the windows side, something I have spotted a few times, that the toolbar of DoxyBlocks did not have any icons, close CB and start CB again , the icons are there.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxWidgets 3.0.3 released
« Reply #31 on: July 11, 2017, 08:32:01 pm »
The wx3 has many more warnings and asserts. This is a new warning that a zip resource files doesn't have a xrc file in it. I don't know why they emit it, but at least it doesn't hurt...
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #32 on: July 11, 2017, 10:07:15 pm »
it is a pity that the warning is visible in the red in our log, might scare a user.


About the issues I mentioned above, I did some further investigation/experiment:

I adjusted my check out to revision 11080 ==> build => none of the mentioned problems (only the -ns needed in this case)
Then I started upping to newer revision, a few commits at a time, none of the problems reappeared. Now I am back at the head of trunk, and no problems.
So the spellchecker error and the asserts, all gone.

Weird.

Maybe I should try a clean + build workspace ...

EDIT - UPDATE : I deleted my output30_64 (keeping the devel60_64), ran the update30_64.bat ==> the problems are back : WTF (both the assert and the spellcheck error and the doxyblocks icons problem)
« Last Edit: July 11, 2017, 10:11:11 pm by killerbot »

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: wxWidgets 3.0.3 released
« Reply #33 on: July 11, 2017, 10:33:18 pm »
I have a feeling that maybe their is something wrong with those update scripts ?

stepped back one revision, problems remain, stepped back to 11100 problems gone.
Now upping to head again : problems gone

pffffffffffffffffffffffffff :-(
« Last Edit: July 11, 2017, 11:04:16 pm by killerbot »