Skip to content

Commit

Permalink
[fix] re #193 workaround for <stdarg.h> missing in amalgamated file
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Jan 20, 2022
1 parent d0e2b17 commit 26a68a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/amalgamate.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
#if defined(RYML_SHARED) && !defined(C4CORE_SHARED)
#define C4CORE_SHARED
#endif
// workaround for include removal while amalgamating
// resulting in <stdarg.h> missing in arm-none-eabi-g++
// https://github.com/biojppm/rapidyaml/issues/193
#include <stdarg.h>
"""


Expand Down

0 comments on commit 26a68a1

Please sign in to comment.