bash# cat > m.c
main () {
printf("hello world\n");
}
bash# gcc -o m -m.c
gcc: No input files
bash# gcc -o m m.c
./m
bash# ./m
hello world
bash# gcc -N -o m m.c
bash# ./m
Segmentation fault
The -N option seems to be very broken on alpha's. I've tried this with
grocne's 2.7.0 and a homebrew one, and with 2 different versions of David
M-T's libc stuff.
Any ideas?
Erik
-------------------------------------------------------------------------------
"Eggheads unite! You have nothing to lose but your yolks" - Adlai Stevenson
Erik Troan = http://sunsite.unc.edu/ewt/ = ewt@sunsite.unc.edu