Skip to content

Instantly share code, notes, and snippets.

@rue
Created October 16, 2008 20:16
Show Gist options
  • Select an option

  • Save rue/17247 to your computer and use it in GitHub Desktop.

Select an option

Save rue/17247 to your computer and use it in GitHub Desktop.
ruerue@eero-desktop:~/code/rubinius/master$ gdb vm/test/runner
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...
(gdb) handle SIGUSR1 pass noprint nostop
Signal Stop Print Pass to program Description
SIGUSR1 No No Yes User defined signal 1
(gdb) r
Starting program: /home/ruerue/code/rubinius/master/vm/test/runner
[Thread debugging using libthread_db enabled]
Running 810 tests..........................................................................................
..............[New Thread 0xb7c5d6c0 (LWP 20485)]
.................................................................
............................................................................
...............................................................................................
.................................................................................................
..................................................................................................
...................................................................................................
..................................................................................................
..............................................................................OK!
Program exited normally.
(gdb) quit
ruerue@eero-desktop:~/code/rubinius/master$ uname -a
Linux eero-desktop 2.6.24-19-generic #1 SMP Wed Jun 18 14:43:41 UTC 2008 i686 GNU/Linux
ruerue@eero-desktop:~/code/rubinius/master$ g++ -v
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v
--enable-languages=c,c++,fortran,objc,obj-c++,treelang
--prefix=/usr
--enable-shared
--with-system-zlib
--libexecdir=/usr/lib
--without-included-gettext
--enable-threads=posix
--enable-nls
--with-gxx-include-dir=/usr/include/c++/4.2
--program-suffix=-4.2
--enable-clocale=gnu
--enable-libstdcxx-debug
--enable-objc-gc
--enable-mpfr
--enable-targets=all
--enable-checking=release
--build=i486-linux-gnu
--host=i486-linux-gnu
--target=i486-linux-gnu
Thread model: posix
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
ruerue@eero-desktop:~/code/rubinius/master$
ruerue@eero-desktop:~/code/rubinius/master$ gcc -v
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v
--enable-languages=c,c++,fortran,objc,obj-c++,treelang
--prefix=/usr
--enable-shared
--with-system-zlib
--libexecdir=/usr/lib
--without-included-gettext
--enable-threads=posix
--enable-nls
--with-gxx-include-dir=/usr/include/c++/4.2
--program-suffix=-4.2
--enable-clocale=gnu
--enable-libstdcxx-debug
--enable-objc-gc
--enable-mpfr
--enable-targets=all
--enable-checking=release
--build=i486-linux-gnu
--host=i486-linux-gnu
--target=i486-linux-gnu
Thread model: posix
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
ruerue@eero-desktop:~/code/rubinius/master$ ldd vm/vm
linux-gate.so.1 => (0xb7f80000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7f5b000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7f57000)
librt.so.1 => /lib/tls/i686/cmov/librt.so.1 (0xb7f4d000)
libcrypt.so.1 => /lib/tls/i686/cmov/libcrypt.so.1 (0xb7f1b000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7e28000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7e03000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7df8000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7ca9000)
/lib/ld-linux.so.2 (0xb7f81000)
ruerue@eero-desktop:~/code/rubinius/master$ ldd vm/external_libs/libev/.libs/libev.so
linux-gate.so.1 => (0xb7ee6000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7eaa000)
librt.so.1 => /lib/tls/i686/cmov/librt.so.1 (0xb7ea1000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7d51000)
/lib/ld-linux.so.2 (0xb7ee7000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7d39000)
ruerue@eero-desktop:~/code/rubinius/master$ ldd vm/test/runner
linux-gate.so.1 => (0xb7fcc000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7fa7000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7fa3000)
librt.so.1 => /lib/tls/i686/cmov/librt.so.1 (0xb7f99000)
libcrypt.so.1 => /lib/tls/i686/cmov/libcrypt.so.1 (0xb7f67000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7e74000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7e4f000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7e44000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7cf5000)
/lib/ld-linux.so.2 (0xb7fcd000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment