-
Notifications
You must be signed in to change notification settings - Fork 0
Experiment/cpp26 reflection ffi #20
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
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
cd6b2ee
feat(ffi): add C++26 reflection FFI metadata layer and Deno bindgen
Katze719 83e6c24
feat: add mingw toolchain and preset
Katze719 78fa350
feat: implement ABI registry and status code management for serial op…
Katze719 6f357cd
feat: enhance status code management and introduce new status code de…
Katze719 22ead25
feat: add strict warning options for GCC and enhance FFI metadata wit…
Katze719 7abdbe4
refactor(cpp-core): remove StatusCodes aliases and tighten header layout
Katze719 5e1876a
refactor: simplify serial function parameters and improve type defini…
Katze719 9336e26
feat: add error callback support and enhance TypeScript wrapper gener…
Katze719 ebe892f
refactor: update README for clarity and structure, enhancing API cont…
Katze719 2ec39ae
feat: add CI workflow for build and testing, and update Doxygen confi…
Katze719 5360e87
fix: update CI workflow to use Ubuntu 24.04 and ensure GCC 16 install…
Katze719 aeb05f6
fix: update static assert for reflection implementation version
Katze719 7351f93
feat: make glue code more genereic
Katze719 a3db4cf
chore: rename workflow and compile test files
Katze719 cea69ad
chore: update checkout actions to v6
Katze719 acefbcf
remove: codegen
Katze719 64d3d47
feat: implement GCC reflection support and enhance SerialConfig valid…
Katze719 7332e82
feat: add GitHub Actions workflow for compile checks
Katze719 79d9664
feat: add support for optional FFI AST export with clang++
Katze719 f5fdaa9
feat: add slim JSON output for FFI API metadata and update CMake conf…
Katze719 b1d7362
refactor: remove GCC version checks from CMakeLists.txt
Katze719 51525a6
refactor: standardize JSON key naming in FFI API metadata
Katze719 438c055
docs: update README to reflect current FFI generation workflow with c…
Katze719 e1b78f2
Update .github/workflows/compile_checks.yml
Katze719 eb92664
Update .github/workflows/doxygen.yml
Katze719 52cc43e
Update .github/workflows/doxygen.yml
Katze719 1cf05d7
Update .github/workflows/doxygen.yml
Katze719 8e8bfa8
refactor: update CI workflows and improve test coverage for reflectio…
Katze719 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| name: 'Compile Checks' | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - '*' | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| compile_checks: | ||
| name: 'Compile checks' | ||
| runs-on: ubuntu-24.04 | ||
|
|
||
| steps: | ||
| - name: 'Checkout repository' | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: 'Install GCC 16.1 toolchain' | ||
| run: | | ||
| sudo apt-get update -qq | ||
| sudo apt-get install -y software-properties-common | ||
| sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | ||
| sudo apt-get update -qq | ||
| sudo apt-get install -y gcc-16 g++-16 ninja-build cmake | ||
|
|
||
| - name: 'Show toolchain versions' | ||
| run: | | ||
| cmake --version | ||
| ninja --version | ||
| gcc-16 --version | ||
| g++-16 --version | ||
|
|
||
| - name: 'Configure CMAKE' | ||
| run: | | ||
| cmake -S . -B build/ci -G Ninja \ | ||
| -DCMAKE_BUILD_TYPE=Debug \ | ||
| -DCMAKE_C_COMPILER=gcc-16 \ | ||
| -DCMAKE_CXX_COMPILER=g++-16 | ||
|
|
||
| - name: 'Build compile checks' | ||
| run: | | ||
| cmake --build build/ci --target cpp_core_compile_tests | ||
|
|
||
| - name: 'Run CTest if registered tests exist' | ||
| run: | | ||
| ctest --test-dir build/ci --output-on-failure --no-tests=ignore | ||
|
Katze719 marked this conversation as resolved.
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.