One cute thing I observed with my Ubuntu (and in general Linux) is that the most commonly used and significant program 'ld' and 'ldconfig'. Whenever you install/deploy a package you would get the message like
'ldconfig deferred processing now taking place'.
Today as part of my gcc (GNU C) explorations and trying to recall my college day C programming when I tried something I got the following error from the compiler:
lavanyadeepak@LavanyaDeepak:~/Downloads$ gcc a.c
/tmp/ccRQQLcH.o: In function `main':
a.c:(.text+0x11): undefined reference to `println'
collect2: ld returned 1 exit status
'ldconfig deferred processing now taking place'.
Today as part of my gcc (GNU C) explorations and trying to recall my college day C programming when I tried something I got the following error from the compiler:
lavanyadeepak@LavanyaDeepak:~/Downloads$ gcc a.c
/tmp/ccRQQLcH.o: In function `main':
a.c:(.text+0x11): undefined reference to `println'
collect2: ld returned 1 exit status
No comments:
Post a Comment