> > You're not going to get any meaningful results without removing > -pedantic-errors from the config.mak. pcc is erroring out due to the > unrecognized option without building any tests. > > Rich > Thanks Rich, I found and removed the setting in the makefile and re-ran the test. I have been using some shell code to identify pcc and make adjustments, its super crude but here it is. Perhaps something along these lines could be added to the nsz libc test. if command -v pcc >/dev/null 2>&1; then export CC=pcc else export CFLAGS="$CFLAGS --static" fi