Compiling ksymoops tool on Ubuntu 12.04
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I need to build ksymoops tool as standalone for kernel panic analyse.
ksymoops source code can be downloaded from this link
When I compile it on Ubuntu 12.04 it shows error:
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `bfd_compress_section_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:100: undefined reference to `compressBound'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:106: undefined reference to `compress'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `decompress_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:61: undefined reference to `inflateEnd'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:49: undefined reference to `inflateInit_'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:59: undefined reference to `inflateReset'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:56: undefined reference to `inflate'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(plugin.o): In function `try_load_plugin':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:134: undefined reference to `dlopen'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:141: undefined reference to `dlsym'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:137: undefined reference to `dlerror'
collect2: ld returned 1 exit status
make: *** [ksymoops] Error 1
ubuntu compiling kernel-panic
add a comment |
up vote
0
down vote
favorite
I need to build ksymoops tool as standalone for kernel panic analyse.
ksymoops source code can be downloaded from this link
When I compile it on Ubuntu 12.04 it shows error:
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `bfd_compress_section_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:100: undefined reference to `compressBound'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:106: undefined reference to `compress'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `decompress_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:61: undefined reference to `inflateEnd'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:49: undefined reference to `inflateInit_'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:59: undefined reference to `inflateReset'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:56: undefined reference to `inflate'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(plugin.o): In function `try_load_plugin':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:134: undefined reference to `dlopen'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:141: undefined reference to `dlsym'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:137: undefined reference to `dlerror'
collect2: ld returned 1 exit status
make: *** [ksymoops] Error 1
ubuntu compiling kernel-panic
ksymoops
is useless since kernel 2.6; seeoops-tracing.txt
in the kernel documentation.
– Stephen Kitt
May 28 '15 at 4:51
"ksymoops has been removed from the kernel. It was always meant to be a free standing utility, not linked to any particular kernel version." I want to use this tool as standalone tool, I'm modifying driver for kernel and kernel panic at booting time
– Dai Nguyen-Van
May 28 '15 at 8:00
That quote dates back to 1999; things have changed since then.
– Stephen Kitt
May 28 '15 at 8:06
I got it from hardkernel source code for Odroidxu3 board v3.10. Maybe I have to find other ways. Thanks for your comment @Stephen
– Dai Nguyen-Van
May 28 '15 at 8:22
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to build ksymoops tool as standalone for kernel panic analyse.
ksymoops source code can be downloaded from this link
When I compile it on Ubuntu 12.04 it shows error:
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `bfd_compress_section_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:100: undefined reference to `compressBound'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:106: undefined reference to `compress'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `decompress_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:61: undefined reference to `inflateEnd'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:49: undefined reference to `inflateInit_'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:59: undefined reference to `inflateReset'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:56: undefined reference to `inflate'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(plugin.o): In function `try_load_plugin':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:134: undefined reference to `dlopen'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:141: undefined reference to `dlsym'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:137: undefined reference to `dlerror'
collect2: ld returned 1 exit status
make: *** [ksymoops] Error 1
ubuntu compiling kernel-panic
I need to build ksymoops tool as standalone for kernel panic analyse.
ksymoops source code can be downloaded from this link
When I compile it on Ubuntu 12.04 it shows error:
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `bfd_compress_section_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:100: undefined reference to `compressBound'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:106: undefined reference to `compress'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(compress.o): In function `decompress_contents':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:61: undefined reference to `inflateEnd'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:49: undefined reference to `inflateInit_'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:59: undefined reference to `inflateReset'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/compress.c:56: undefined reference to `inflate'
/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libbfd.a(plugin.o): In function `try_load_plugin':
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:134: undefined reference to `dlopen'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:141: undefined reference to `dlsym'
/build/buildd/binutils-2.22/builddir-single/bfd/../../bfd/plugin.c:137: undefined reference to `dlerror'
collect2: ld returned 1 exit status
make: *** [ksymoops] Error 1
ubuntu compiling kernel-panic
ubuntu compiling kernel-panic
edited Nov 20 at 22:26
Rui F Ribeiro
38.2k1475125
38.2k1475125
asked May 28 '15 at 2:24
Dai Nguyen-Van
1266
1266
ksymoops
is useless since kernel 2.6; seeoops-tracing.txt
in the kernel documentation.
– Stephen Kitt
May 28 '15 at 4:51
"ksymoops has been removed from the kernel. It was always meant to be a free standing utility, not linked to any particular kernel version." I want to use this tool as standalone tool, I'm modifying driver for kernel and kernel panic at booting time
– Dai Nguyen-Van
May 28 '15 at 8:00
That quote dates back to 1999; things have changed since then.
– Stephen Kitt
May 28 '15 at 8:06
I got it from hardkernel source code for Odroidxu3 board v3.10. Maybe I have to find other ways. Thanks for your comment @Stephen
– Dai Nguyen-Van
May 28 '15 at 8:22
add a comment |
ksymoops
is useless since kernel 2.6; seeoops-tracing.txt
in the kernel documentation.
– Stephen Kitt
May 28 '15 at 4:51
"ksymoops has been removed from the kernel. It was always meant to be a free standing utility, not linked to any particular kernel version." I want to use this tool as standalone tool, I'm modifying driver for kernel and kernel panic at booting time
– Dai Nguyen-Van
May 28 '15 at 8:00
That quote dates back to 1999; things have changed since then.
– Stephen Kitt
May 28 '15 at 8:06
I got it from hardkernel source code for Odroidxu3 board v3.10. Maybe I have to find other ways. Thanks for your comment @Stephen
– Dai Nguyen-Van
May 28 '15 at 8:22
ksymoops
is useless since kernel 2.6; see oops-tracing.txt
in the kernel documentation.– Stephen Kitt
May 28 '15 at 4:51
ksymoops
is useless since kernel 2.6; see oops-tracing.txt
in the kernel documentation.– Stephen Kitt
May 28 '15 at 4:51
"ksymoops has been removed from the kernel. It was always meant to be a free standing utility, not linked to any particular kernel version." I want to use this tool as standalone tool, I'm modifying driver for kernel and kernel panic at booting time
– Dai Nguyen-Van
May 28 '15 at 8:00
"ksymoops has been removed from the kernel. It was always meant to be a free standing utility, not linked to any particular kernel version." I want to use this tool as standalone tool, I'm modifying driver for kernel and kernel panic at booting time
– Dai Nguyen-Van
May 28 '15 at 8:00
That quote dates back to 1999; things have changed since then.
– Stephen Kitt
May 28 '15 at 8:06
That quote dates back to 1999; things have changed since then.
– Stephen Kitt
May 28 '15 at 8:06
I got it from hardkernel source code for Odroidxu3 board v3.10. Maybe I have to find other ways. Thanks for your comment @Stephen
– Dai Nguyen-Van
May 28 '15 at 8:22
I got it from hardkernel source code for Odroidxu3 board v3.10. Maybe I have to find other ways. Thanks for your comment @Stephen
– Dai Nguyen-Van
May 28 '15 at 8:22
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f206008%2fcompiling-ksymoops-tool-on-ubuntu-12-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
ksymoops
is useless since kernel 2.6; seeoops-tracing.txt
in the kernel documentation.– Stephen Kitt
May 28 '15 at 4:51
"ksymoops has been removed from the kernel. It was always meant to be a free standing utility, not linked to any particular kernel version." I want to use this tool as standalone tool, I'm modifying driver for kernel and kernel panic at booting time
– Dai Nguyen-Van
May 28 '15 at 8:00
That quote dates back to 1999; things have changed since then.
– Stephen Kitt
May 28 '15 at 8:06
I got it from hardkernel source code for Odroidxu3 board v3.10. Maybe I have to find other ways. Thanks for your comment @Stephen
– Dai Nguyen-Van
May 28 '15 at 8:22