PDA

View Full Version : problem compiling source



lewisdw
07-16-2005, 04:24 AM
I'm trying to compile some apps from source, and ./configure fails on everything I try with the following:

...
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... /lib/cpp
configure: error: C preprocessor "/lib/cpp" fails sanity check


What files/libraries am I missing? This is knoppix 4 (with a debian type install to the hdd).

Thanks

Markus
07-16-2005, 10:04 AM
Do you have cpp installed?
markus@mrk-fujibox:~$ ls -l /usr/bin/cpp*
lrwxrwxrwx 1 root root 16 Jul 13 20:54 /usr/bin/cpp -> /usr/bin/cpp-3.3
-rwxr-xr-x 1 root root 80748 Dec 23 2003 /usr/bin/cpp-3.2
-rwxr-xr-x 1 root root 88828 Jun 21 01:03 /usr/bin/cpp-3.3
-rwxr-xr-x 1 root root 90232 Jul 12 07:25 /usr/bin/cpp-4.0
markus@mrk-fujibox:~$ dpkg -l|grep cpp
ii cpp 4.0.0-2 The GNU C preprocessor (cpp)
ii cpp-3.2 3.2.3-9 The GNU C preprocessor
ii cpp-3.3 3.3.6-7 The GNU C preprocessor
ii cpp-4.0 4.0.1-2 The GNU C preprocessor

Best to use the same cpp and gcc versions.

lewisdw
07-16-2005, 12:39 PM
Yes, it's installed:

wayne@erin:~$ ls -l /usr/bin/cpp*
lrwxrwxrwx 1 root root 7 Jul 11 21:08 /usr/bin/cpp -> cpp-3.3
-rwxr-xr-x 1 root root 88876 May 14 19:34 /usr/bin/cpp-3.3
-rwxr-xr-x 1 root root 86124 May 5 19:16 /usr/bin/cpp-3.4
-rwxr-xr-x 1 root root 90188 May 28 09:50 /usr/bin/cpp-4.0
wayne@erin:~$ dpkg -l|grep cpp
ii cpp 3.3.5-3 The GNU C preprocessor (cpp)
ii cpp-3.3 3.3.6-5 The GNU C preprocessor
ii cpp-3.4 3.4.3-13 The GNU C preprocessor
ii cpp-4.0 4.0.0-9 The GNU C preprocessor

Markus
07-16-2005, 03:20 PM
And gcc is pointing to the same version?
markus@mrk-fujibox:~$ ls -l /usr/bin/gcc*
lrwxrwxrwx 1 root root 16 Jul 13 20:53 /usr/bin/gcc -> /usr/bin/gcc-3.3
-rwxr-xr-x 1 root root 85244 Jun 21 01:05 /usr/bin/gcc-3.3
-rwxr-xr-x 1 root root 89112 Jul 12 07:29 /usr/bin/gcc-4.0
lrwxrwxrwx 1 root root 19 Jul 16 11:59 /usr/bin/gccbug -> /usr/bin/gccbug-3.3
-rwxr-xr-x 1 root root 16059 Jun 21 00:51 /usr/bin/gccbug-3.3
-rwxr-xr-x 1 root root 16245 Jul 12 07:15 /usr/bin/gccbug-4.0
markus@mrk-fujibox:~$ dpkg -l|grep gcc
ii gcc 4.0.0-2 The GNU C compiler
ii gcc-3.2-base 3.2.3-9 The GNU Compiler Collection (base package)
ii gcc-3.3 3.3.6-7 The GNU C compiler
ii gcc-3.3-base 3.3.6-7 The GNU Compiler Collection (base package)
ii gcc-3.4-base 3.4.4-5 The GNU Compiler Collection (base package)
ii gcc-4.0 4.0.1-2 The GNU C compiler
ii gcc-4.0-base 4.0.1-2 The GNU Compiler Collection (base package)
ii libgcc1 4.0.1-2 GCC support library

lewisdw
07-16-2005, 07:01 PM
I'm not sure about that. Here's my output:

wayne@erin:~$ ls -l /usr/bin/gcc*
lrwxrwxrwx 1 root root 7 Jul 11 21:09 /usr/bin/gcc -> gcc-3.3
-rwxr-xr-x 1 root root 85196 May 14 19:36 /usr/bin/gcc-3.3
-rwxr-xr-x 1 root root 84972 May 5 19:19 /usr/bin/gcc-3.4
-rwxr-xr-x 1 root root 89068 May 28 09:54 /usr/bin/gcc-4.0
lrwxrwxrwx 1 root root 10 Jul 11 21:09 /usr/bin/gccbug -> gccbug-3.3
-rwxr-xr-x 1 root root 16055 May 14 19:31 /usr/bin/gccbug-3.3
-rwxr-xr-x 1 root root 16198 May 5 19:06 /usr/bin/gccbug-3.4
-rwxr-xr-x 1 root root 16202 May 28 09:45 /usr/bin/gccbug-4.0
wayne@erin:~$ dpkg -l|grep gcc
ii colorgcc 1.3.2.0-4 Colorizer for GCC warning/error messages
ii gcc 3.3.5-3 The GNU C compiler
ii gcc-3.3 3.3.6-5 The GNU C compiler
ii gcc-3.3-base 3.3.6-5 The GNU Compiler Collection (base package)
ii gcc-3.4 3.4.3-13 The GNU C compiler
ii gcc-3.4-base 3.4.3-13 The GNU Compiler Collection (base package)
ii gcc-4.0 4.0.0-9 The GNU C compiler
ii gcc-4.0-base 4.0.0-9 The GNU Compiler Collection (base package)
ii libgcc1 4.0.0-9 GCC support library

Markus
07-16-2005, 07:35 PM
Hmm, try reinstalling the packages or switch to 4 with:
rm /usr/bin/gcc /usr/bin/cpp
ln -s /usr/bin/gcc-4.0 /usr/bin/gcc
ln -s /usr/bin/cpp-4.0 /usr/bin/cpp