add info block for stddef issues

This commit is contained in:
Henry Hiles 2026-05-31 12:59:59 -04:00
commit f68a2e7b5a
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -210,6 +210,13 @@ Generate Gomuks bindings:
dart scripts/generate.dart
```
> [!INFO]
> If you are having issues with `stddef.h` not being found, try setting CPATH manually:
>
> ```sh
> export CPATH="$(clang -v 2>&1 | grep "Selected GCC installation" | rev | cut -d' ' -f1 | rev)/include"
> ```
Build generated files, and watch for new changes:
```sh