Skip to content
Snippets Groups Projects

Draft: C Interfacing

Open Richard Angersbach requested to merge rangersbach/c-interfacing into master

This MR enables C compatibility for the generated target code

  • Adds SfgConfig.c_interfacing option that automatically marks all function declarations as extern "C"
  • Provides hybrid compilation mode for header files where C/C++ includes and also function definitions are guarded by
#ifdef __cplusplus 
<cpp includes...>

#define EXTERNC extern "C"
#else 
<hybrid includes...>

#define EXTERN C
#endif
  • Automatically converts C++ header includes, e.g. <cstdint>, to C compatible header includes, e.g. <stdint.h>, for hybrid mode

Merge request reports

Pipeline passed for 3912add0 on rangersbach/c-interfacing

Test coverage 86.00% (-1.00%) from 2 jobs
Approval is optional
Merge blocked: 1 check failed

Merge details

  • The source branch is 6 commits behind the target branch.
  • 1 commit and 1 merge commit will be added to master (squashes 9 commits).
  • Source branch will be deleted.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
Please register or sign in to reply