From: Dennis M. <dmc...@ny...> - 2005-01-30 04:11:41
|
> -----Original Message----- > From: pil...@li... > [mailto:pil...@li...]On Behalf Of Michael > Burke > Sent: Saturday, January 29, 2005 6:41 PM > To: pil...@li... > Subject: [pilot-db-list] Configure failure > > when i run ./configure i get the following error under linux: > > [mburke@localhost mburke]$ pilot-db/configure > checking whether make sets $(MAKE)... yes > checking for m68k-palmos-gcc... no > checking for m68k-palmos-coff-gcc... no > configure: WARNING: "Unable to find cross-compiler" > checking for m68k--gcc... no > configure: WARNING: "Unable to find cross-compiler" > configure: creating ./config.status > config.status: creating Makefile > config.status: creating rcp/Makefile > config.status: creating src/Makefile > mv: cannot move `./confstathL1hTR/out' to `src/Makefile': > Permission denied > config.status: creating def/ > config.status: error: cannot find input file: def/.in > > can anyone tell me why src/makefile has the wrong > permissions and where it's located so I can fix it. Configure takes the results of its investigations and creates a makefile based on what it discovered. It looks like it put its results into `./confstathL1hTR/out', and is attempting to move that file into the src directory as "Makefile". If it can't do so, likely reasons are 1) the src directory exists but the permissions on it won't allow configure to write to it 2) the src directory *doesn't* exist, and configure either has no provision to create it, or does not have permission to make the directory under whatever directory it happens to be in We'd need to know more about your setup, like where you put the DB stuff before you ran configure, to say much more. And judging from the warnings, you'll have other problems, as you don't have a gcc cross-compiler installed that configure can locate. If you are trying to build DB from source, the target processor is a Mororola 68K device. Stock gcc under Linux on a Intel box generates code for Intel processors. You need a version of GCC set up to generate Motorola code to get anywhere. ______ Dennis |