On Sat, Oct 19, 2013 at 11:04 AM, James Hilliard <[email protected]> wrote: > I've now based off of trunk and have integrated some actual hardware > specific configs/patches, I've made progress on a number of other needed > changes but am stuck on one particular error : > ERROR: Missing site config for target "ubicom32-openwrt-linux-uclibc" ! > The missing file will cause configure scripts to fail during > compilation. > Please provide a > "/home/james/openwrt/include/site/ubicom32-openwrt-linux-uclibc" file and > restart the build. > make[2]: *** [prereq] Error 1 > make[1]: *** [prereq] Error 2 > make: *** [depends] Error 2 > I have no idea what configure scripts actually need this and how to fix it. > It does not exist in the oem ubicom buildroot directory as far as I can tell > so I think I just need to kill off whatever is asking for the file since it > is probably not needed there.
Have a look at the other files in this directory. They provide the defaults for many standard configure script tests (ac_cv_*). Several of these are usually only found out by running a test program (after compiling it), which fails badly when cross compiling, thus breaking the configure step and therefore compilation. So in conclusion you will need it, and you need to provide the appropriate defaults in it. Regards Jonas _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
