News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

msys2's wx library is graphics context enabled, so C::B may build against it

Started by ollydbg, December 18, 2021, 04:24:27 PM

Previous topic - Next topic

ollydbg

I just notice that the wx library supplied by msys2 (mingw-w64) already have graphics context enabled,

See this file: MINGW-packages/PKGBUILD at master msys2/MINGW-packages

It looks like some comments are:

# Configure options added to support other software:
  #   --enable-graphics_ctx     codelite



So, maybe in the future, we can build C::B against this wx library.

Any ideas?

maybe in the future, we can have C::B build against a buildbot (such as github action), because I see github action support msys2. :)




If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

BlueHazzard

Have you tried to activate git hub actions?

Can we build codeblocks with msys from command line?
does the normal configure steps work?

this would be quite nice also for plugin deployment/ auto updated

ollydbg

No, I haven't use github action yet.

I just saw some project in github which use github action to build a linux kernel, and I see the msys2 use github action.

So, this is just my idea, I haven't take action, I have never use a builtbot till now.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.