Here's the latest, anyone know anything about this? :)
I got the headers installed, and the build.sh fails after it goes into modules and tries to make.
I ran make from there (APE-Project-APE_Server-7368a9c/modules) and output 2> to a log file, and it was complaining about there not being a ../deps/js/src/dist/include folder with a jsapi.h file in it. That file was in ../deps/js/src (there is no dist or dist/include in deps/js/src) so I changed the build line* to specify deps/js/src instead of deps/js/src/dist/include.
The next errors are about it not being able to find js-configure.h, which I've surmised is a file that is supposed to be generated as an earlier part of the build process. It also wants jsautocfg.h, which also appears to be something that is automatically generated at build. But I don't think I even have whatever it was that was supposed to build those?
I'm obviously missing something. The problem is likely between the chair and keyboard.
To recap, I'm trying to figure out how to build APE on an ARM processor, specifically a global scale technologies dreamplug running deb lenny 2.6.33. I have all the pre-reqs installed and I'm using gnu make. I'm not cross compiling, but actually working on the dreamplug directly. I'd really like to get it running APE.
Thanks for any insight anyone out there may have.
Jeremy
* -- to clarify: make ran this
gcc -D_GNU_SOURCE -Wall -g -shared -fPIC -rdynamic -Wl,-soname,libmod_spidermonkey.so -o lib/libmod_spidermonkey.so libape-spidermonkey.c -I../deps/js/src/dist/include/ -L../deps/js/src/ -ljs_static -lstdc++ -L./deps/mysac/ -I./deps/mysac/ -lmysac -lmysqlclient_r
and I told it to do this
gcc -D_GNU_SOURCE -Wall -g -shared -fPIC -rdynamic -Wl,-soname,libmod_spidermonkey.so -o lib/libmod_spidermonkey.so libape-spidermonkey.c -I../deps/js/src/ -L../deps/js/src/ -ljs_static -lstdc++ -L./deps/mysac/ -I./deps/mysac/ -lmysac -lmysqlclient_r
instead.