Changes between Version 10 and Version 11 of cross-chap5
- Timestamp:
- 05/06/2020 06:41:40 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cross-chap5
v10 v11 98 98 There are only warnings, then the error is about a missing file when running the m4 subprocess. To troubleshoot: '''type m4''' and '''ldd /usr/bin/m4''', also try to run bison with a verbose switch. 99 99 100 Solution::101 100 It turns out (using strace) the bison expects m4 to be in /bin. Here is at least a workaround: 102 101 … … 110 109 111 110 or move bison (and flex) to chroot. 111 >> + m4 ?? 112 113 or `if [ -L /bin ]; then PATH=$LFS/tools/bin:/usr/bin; else PATH=$LFS/tools/bin:/bin:/usr/bin; fi` 114 115 Solution:: 116 one of the discussed above. Not yet decided 117 112 118 ---- 113 119