[ create a new paste ] login | about

Link: http://codepad.org/jD3micyG    [ raw code | fork ]

Plain Text, pasted on Jun 23:
bash-4.2# /usr/bin/gcc --version
gcc (CRUX) 4.5.3
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

bash-4.2# /usr/bin/gcc -v 1     
gcc: 1: No such file or directory
Using built-in specs.
COLLECT_GCC=/usr/bin/gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-pc-linux-gnu/4.5.3/lto-wrapper
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.5.3/configure --prefix=/usr --mandir=/usr/man --libexecdir=/usr/lib --enable-languages=c,c++,objc --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-shared --disable-nls --with-x=no --with-system-zlib --with-pkgversion=CRUX
Thread model: posix
gcc version 4.5.3 (CRUX) 
bash-4.2# gcc --version 1>&5
bash: 5: Bad file descriptor
bash-4.2# gcc --version 1>&2
gcc (CRUX) 4.5.3
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

bash-4.2# gcc --version >&5
bash: 5: Bad file descriptor
bash-4.2# gcc --version >&2
gcc (CRUX) 4.5.3
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

bash-4.2# 



Create a new paste based on this one


Comments: