On 2/13/06, Donald C. Kirker <[EMAIL PROTECTED]> wrote: > Sorry for my ignorence. > > I am compiling collector.cpp and when i do I get the following errors: > > kjs/collector.cpp:317:2: #error Unknown Architecture > kjs/collector.cpp:331:2: #error Unknown Architecture > > which is where all of the "#if defined(__i386__) i386_thread_state_t regs; > ... etc." is housed. The only options are i386, ppc and ppc64. What should I > do about the fact that Palm devices use ARM processors?
Looking at current sources (not Nokia's version) those are related to multiple threading support. Palm OS doesn't have threads so your best bet is to disable threading support by making sure that KJS_MULTIPLE_THREADS pre-processor symbol is not defined (in latest sources it's defined in \kjs\config.h if __APPLE__ symbol is defined as well). -- kjk _______________________________________________ webkit-dev mailing list [email protected] http://www.opendarwin.org/mailman/listinfo/webkit-dev
