Hello..
I tried all things I can..
But failed to configure CPPUNIT at PSOS..
PSOS uses Korn Shell..
and CPPUNIT "./configure" uses bash shell..
How can I work out ?
Here are error messages..please help me..
====================================
./configure CC=c:/isiarm/pssarm.251/bin/win32/gnu/make \
--prefix=v:/cppunit_installed --host=arm
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for arm-strip... no
checking for strip... strip
checking whether make sets $(MAKE)... (cached) yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for arm-gcc... c:/isiarm/pssarm.251/bin/win32/gnu/make
checking for C compiler default output... configure: error: C compiler cannot create executables
See `config.log' for more details.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Off-hand, it doesn't look like your shells are at fault. Rather, the configure script doesn't recognize the output from your C compiler. You might have to tweak the configure script manually, or see if a newer version of autoconf handles this better (note: this latter option entails regeneration of your configure script).
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello..
I tried all things I can..
But failed to configure CPPUNIT at PSOS..
PSOS uses Korn Shell..
and CPPUNIT "./configure" uses bash shell..
How can I work out ?
Here are error messages..please help me..
====================================
./configure CC=c:/isiarm/pssarm.251/bin/win32/gnu/make \ --prefix=v:/cppunit_installed --host=arm
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for arm-strip... no
checking for strip... strip
checking whether make sets $(MAKE)... (cached) yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for arm-gcc... c:/isiarm/pssarm.251/bin/win32/gnu/make
checking for C compiler default output... configure: error: C compiler cannot create executables
See `config.log' for more details.
Off-hand, it doesn't look like your shells are at fault. Rather, the configure script doesn't recognize the output from your C compiler. You might have to tweak the configure script manually, or see if a newer version of autoconf handles this better (note: this latter option entails regeneration of your configure script).
For example, configure thinks your CC=make. In GNU environments, I would expect to see CC=gcc.