On Wed, May 22, 2019 at 05:35:08AM -0500, Octavio Alvarez wrote: > First, in commit b364c89897 [1] I moved the help text outside of main.c into > a separate header file.
It seems to me that this commit misses the addition of the separate header file. > However, I clean the Bash script in a later commit (b5a418cc40 [3]) to use > cpp -E instead of sed to parse the .h file. This is better because cpp is > the proper parser for an .h file. Please confirm that this use of cpp does > not break cross-compilation. You're using the build architecture cpp. One usually expects both build and host compilers to be available. That's fine for this use. Helmut