Has anyone cc'd ANYTHING on 4K78?

billbaloney

House pianist
I know I commented on this before...but this is pretty outrageous.

CC looks for its own specs in /usr/local/libexec/ppc/specs, but this directory doesn't exist! Oh boy. There is a /usr/libexec/ppc, but this doesn't contain a specs file.

And the headers are missing. I hope Apple has fixed this silliness.

Has anyone compiled anything at all on this build? While we're on the topic, has anyone run into this problem and then solved it by successfully installing the cc package <A HREF="http://www.opensource.apple.com/projects/darwin/1.2/source/other/cc-796.3-3.tar.gz">available at Apple</A>?
 
I have been trying to compile a few different applications for linux PPC,

cc is there and responds but i cannot get passed ./configure on everything so far.
 
Yeah, because every configure script includes a little compiler "sanity test", and this compiler fails miserably. Because it's insane.
 
I've built for example ssh, openssl etc. (basically the suite to install ssh on osx) without any problems.

Sven
 
Sven, do me a favor when you get a sec... post the contents of /usr/local/libexec/ppc/ to this thread. The problem with my CC is that this directory doesn't exist. (And there's no gcc on this build for me.)

Thanks.
 
Originally posted by billbaloney
Sven, do me a favor when you get a sec... post the contents of /usr/local/libexec/ppc/ to this thread. The problem with my CC is that this directory doesn't exist. (And there's no gcc on this build for me.)

[galileo:~] sas% dir /usr/libexec/gcc/darwin/ppc/
total 848
drwxr-xr-x 6 root wheel 160 Mar 15 15:42 2.95.2
-r-xr-xr-x 1 root wheel 167096 Mar 15 15:42 as
-r-xr-xr-x 1 root wheel 258292 Mar 15 15:42 cpp-precomp
lrwxr-xr-x 1 root wheel 6 Mar 15 15:42 default -> 2.95.2
[galileo:~] sas% gcc -v
Reading specs from /usr/libexec/gcc/darwin/ppc/2.95.2/specs
Apple Computer, Inc. version gcc-926, based on gcc version 2.95.2 19991024 (release)
[galileo:~] sas% cc -v
Reading specs from /usr/libexec/gcc/darwin/ppc/2.95.2/specs
Apple Computer, Inc. version gcc-926, based on gcc version 2.95.2 19991024 (release)
 
Well, here's the difference:

[localhost:~] holford% l /usr/libexec/gcc
ls: /usr/libexec/gcc: No such file or directory
[localhost:~] holford% gcc -v

OK? cc -v? no
gcc: Command not found.
[localhost:~] holford% cc -v
Apple Computer, Inc. version cc-3, based on gcc driver version 2.7.2.1 executing gcc version 2.95.2
 
Originally posted by billbaloney
Well, here's the difference:

[localhost:~] holford% l /usr/libexec/gcc
ls: /usr/libexec/gcc: No such file or directory
[localhost:~] holford% gcc -v

OK? cc -v? no
gcc: Command not found.
[localhost:~] holford% cc -v
Apple Computer, Inc. version cc-3, based on gcc driver version 2.7.2.1 executing gcc version 2.95.2

Well... here is what I get. I am a registered Apple developer and I installed the Developer Tools (which was a separate CD install). I am not sure what the "OSX only" installs does. I am guessing it doesn't include the developer tools.

[localhost:~] cotton% l /usr/libexec/gcc
total 0
drwxr-xr-x 3 root wheel 264 Feb 23 22:50 darwin
[localhost:~] cotton% gcc -v

OK? cc -v? yes
Reading specs from /usr/libexec/gcc/darwin/ppc/2.95.2/specs
Apple Computer, Inc. version gcc-926, based on gcc version 2.95.2 19991024 (release)
[localhost:~] cotton%
 
Back
Top