You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In meson mode, the script was opening the output file with truncate
mode (>), which created an empty file before meson could capture the
STDOUT output. This resulted in an empty extension file.
Now in meson mode:
- Do not open the output file (avoiding the truncate)
- Output all content to STDOUT, which meson captures via --capture
Make mode remains unchanged - it opens and writes to the file directly.
This aligns with the pattern used by other scripts like
generate-plerrcodes.pl and gb18030_2022's generation.
0 commit comments