1 May
2011
1 May
'11
6:45 p.m.
dnormandin@select-man:~$ ls -l /usr/include/asm/errno.h ls: cannot access /usr/include/asm/errno.h: No such file or directory dnormandin@select-man:~$ cpp v cpp: v: No such file or directory cpp: warning: '-x c' after last input file has no effect cpp: no input files
Well, for the second test, all you need to do there is add the - to the v cpp -v or? CC -v or g++ -v The '-' indicates to the shell that what comes next is a switch, and in the case of the GCC C++ compiler, the option -v gives the version. ?Alternatively, the Solaris C++ compiler uses -V.