Joris Dauphin

Results 202 comments of Joris Dauphin

For the build error, WxWidgets has made an update which requires change in codebase :-/ Using WxWidgets v3.2.5 should fix that. (but cannot install codelite which requires the dll from...

Until Codelite trunk is updated to works with latest WxWidgets, use "older" version of WxWidget: ``` git clone https://github.com/wxWidgets/wxWidgets cd wxWidgets git checkout 3737245c5195d84f0c788e650c6ad7992eec03d7 git submodule update --init ``` For...

Some trivial investigation: - Build error is for a signature change of a virtual function (thanks to `override`). - `git blame` find the commit (which were the last one :-)...

Codelite's master has been fixed. You have to use either WxWidget v2.5.x or master (as 3737245c5195d84f0c788e650c6ad7992eec03d7 is incompatible with the fix).

I think it is related to https://github.com/premake/premake-core/pull/2279 They have to also change config rule settings so "CI Workflow / ci (pull_request)" is the required one, instead of the others. Ping...

>> How does this PR change Premake's behavior? > Nothing. In fact behavior changes ``` os.findheader("header.h", "./submodules/library") ``` would no longer search from local directory. Maybe creating another API would...

There are errors (not marked as such by Codelite though): ``` /usr/bin/sh: -c: line 2: syntax error: unexpected end of file ``` Does `C:\mingw64\bin\g++.exe` really exist?

It should be in build-release/compile_commands.json I even use it in a custom CI (on ubuntu-latest)

As stated in doc, [`enablemodules`](https://premake.github.io/docs/enablemodules/) is only available for visual studio.

There is a runner for windows-arm now to add to the CI, see [standard-github-hosted-runners-for-public-repositories](https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories)