The LINUX and MACOS settings for PATHLEN use 8192, PC_WIN32 uses 512, but the default build...
cc -O2 -o inform *.c
...drops to the fallback of 128.
I'm hitting it on a personal project: a deeply-nested tree plus several include search roots, where the accumulated +include_path overruns 128 characters. There are workarounds (shorter/relative paths; rebuild with a larger DPATHLEN setting) so it's not urgent, but 128 feels like an anachronistic default which people following the build instructions in the README will hit.
Could the default be bumped to match macOS/Linux (8192) by raising the fallback?
Looks like a one-line change.
The LINUX and MACOS settings for
PATHLENuse 8192,PC_WIN32uses 512, but the default build......drops to the fallback of 128.
I'm hitting it on a personal project: a deeply-nested tree plus several include search roots, where the accumulated
+include_pathoverruns 128 characters. There are workarounds (shorter/relative paths; rebuild with a larger DPATHLEN setting) so it's not urgent, but 128 feels like an anachronistic default which people following the build instructions in the README will hit.Could the default be bumped to match macOS/Linux (8192) by raising the fallback?
Looks like a one-line change.