-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GNU autoconf based build script and Github Actions CI #5
Open
NoMore201
wants to merge
15
commits into
EEESlab:main
Choose a base branch
from
NoMore201:feature/autoconf-based-script
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 93b628415fb33a107556f5b1e78b73439aeceaec Author: Domenico Iezzi <[email protected]> Date: Mon Oct 21 09:49:24 2024 +0200 Add step for installing missing dependencies commit 2ef1836d911305dc03a2f0b85264235514bacf12 Author: Domenico Iezzi <[email protected]> Date: Mon Oct 21 09:49:07 2024 +0200 Remove AWK and GREP from configure.ac checks commit 144fd09 Author: Domenico Iezzi <[email protected]> Date: Mon Oct 21 09:23:04 2024 +0200 Modify all target deps, add more clean targets commit f61ec96 Author: Domenico Iezzi <[email protected]> Date: Mon Oct 21 09:18:25 2024 +0200 Add GCC stage2 step for windows commit cd0deb4 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 23:03:51 2024 +0200 Add mingw gcc to dependencies commit 5f04194 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 22:57:50 2024 +0200 Test new layout commit 272036b Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 22:31:41 2024 +0200 Test makefile target commit cebb306 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 22:14:53 2024 +0200 Test msys2 make executable commit 8a331a6 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 21:54:26 2024 +0200 Make windows build clone recursively commit 8caa31f Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 21:49:56 2024 +0200 Update actions/checkout package version commit 00475b2 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 21:45:37 2024 +0200 Fix windows build in CI script commit fb12929 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 21:39:40 2024 +0200 Fix Windows build script commit 6274691 Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 21:39:13 2024 +0200 Disable sysroot option in Makefile commit ce07d1e Author: Domenico Iezzi <[email protected]> Date: Sun Oct 20 19:01:35 2024 +0200 Test MSYS2 win32 ci
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces the following changes:
GNU autoconf based build script
Custom bash script are replaced by a new build system based on GNU autoconf. It is heavily inspired by RiscV toolchain build system. The idea is simple, to have a single
configure
script to handle building an installing compiler into a prefix folder. Thisconfigure
script is automatically generated by autoconf by reading theconfigure.ac
template.With this new approach, a common cross-compiler build would look like this:
Github Actions pipeline
Added Github Actions configuration that run a pipeline on each push and pull-request onto
main
branch. Each pipeline run will also produce compiler artifact, consisting on linux and windows build of the compiler. You can see an example of a successfully run pipeline here in my fork: https://github.com/NoMore201/tricore-gcc-toolchain/actions/runs/11463697465Automated release artifacts from Actions
When a new release is created through the Release functionality of Github, compiler build packages for both linux and windows are automatically downloaded from CI pipeline that run on the same commit as the release tag. You can see an example of a release in my fork: https://github.com/NoMore201/tricore-gcc-toolchain/releases
I think it would be really useful to have official releases of the compiler now that it seems to gather some interest.