Trouble when building LZ4 from source: “recipe for target 'test-fuzzer' failed”2019 Community Moderator ElectionLinux Debian Squeezy Distro: Weakerth4n, Kconfig && make issuesmany many dpkg errors while upgradingmysql2 gem build error when installing redmineapt-get update => could not open dpkg lock file (5: Input/output error)Add and Compile apt-get package manager for LFSRaspberry Pi 3 TP-LINK AC 600 (T2UH) wireless USB adapter (Raspbian Lite)apt-get: Almost all packages “have no installation candidate”Can't modify system file in DebianContents of apt file revert at bootHow to install OURLINK AC600 USB wireless adapter in kali linux
Java - What do constructor type arguments mean when placed *before* the type?
Simulating a probability of 1 of 2^N with less than N random bits
Could solar power be utilized and substitute coal in the 19th century?
How to check participants in at events?
In Star Trek IV, why did the Bounty go back to a time when whales were already rare?
A known event to a history junkie
The One-Electron Universe postulate is true - what simple change can I make to change the whole universe?
Visiting the UK as unmarried couple
How can I successfully establish a nationwide combat training program for a large country?
The most efficient algorithm to find all possible integer pairs which sum to a given integer
Does "Dominei" mean something?
Identify a stage play about a VR experience in which participants are encouraged to simulate performing horrific activities
Why does this part of the Space Shuttle launch pad seem to be floating in air?
Can a Gentile theist be saved?
Can I create an upright 7-foot × 5-foot wall with the Minor Illusion spell?
What do you call the infoboxes with text and sometimes images on the side of a page we find in textbooks?
Are taller landing gear bad for aircraft, particulary large airliners?
What (else) happened July 1st 1858 in London?
Can I Retrieve Email Addresses from BCC?
Lightning Web Component - do I need to track changes for every single input field in a form
Is it okay / does it make sense for another player to join a running game of Munchkin?
Did US corporations pay demonstrators in the German demonstrations against article 13?
Is there a problem with hiding "forgot password" until it's needed?
Should my PhD thesis be submitted under my legal name?
Trouble when building LZ4 from source: “recipe for target 'test-fuzzer' failed”
2019 Community Moderator ElectionLinux Debian Squeezy Distro: Weakerth4n, Kconfig && make issuesmany many dpkg errors while upgradingmysql2 gem build error when installing redmineapt-get update => could not open dpkg lock file (5: Input/output error)Add and Compile apt-get package manager for LFSRaspberry Pi 3 TP-LINK AC 600 (T2UH) wireless USB adapter (Raspbian Lite)apt-get: Almost all packages “have no installation candidate”Can't modify system file in DebianContents of apt file revert at bootHow to install OURLINK AC600 USB wireless adapter in kali linux
I am trying to install ROS (Robot Operating System) on Raspbian. There are some dependencies that I need which are unavailable for Raspbian, so I must build them from source. One of these is lz4. Here is a link to the guide I am using: guide
I am running the command
apt-get source -b lz4
After 2 hours of running, it will eventually give the following error:
Starting LZ4 fuzzer (32-bits, )
Seed = 8544
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:34: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:26: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
I have also tried to use
apt-get source lz4
sudo apt-get build-dep lz4
dpkg-buildpackage -rfakeroot -uc -b
I get the same error.
Does anybody know what might be causing this, or how I could proceed to find a solution?
Thanks
apt raspberry-pi raspbian dpkg
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to install ROS (Robot Operating System) on Raspbian. There are some dependencies that I need which are unavailable for Raspbian, so I must build them from source. One of these is lz4. Here is a link to the guide I am using: guide
I am running the command
apt-get source -b lz4
After 2 hours of running, it will eventually give the following error:
Starting LZ4 fuzzer (32-bits, )
Seed = 8544
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:34: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:26: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
I have also tried to use
apt-get source lz4
sudo apt-get build-dep lz4
dpkg-buildpackage -rfakeroot -uc -b
I get the same error.
Does anybody know what might be causing this, or how I could proceed to find a solution?
Thanks
apt raspberry-pi raspbian dpkg
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Is it possible this could be due to a lack of memory? I am using the orange pi which has limited memory.
– user2445507
Dec 1 '15 at 2:42
This seems to be a relevant bug report: bugs.debian.org/cgi-bin/bugreport.cgi?bug=755170 It seems like it is just failing some test after building. Is there some way I can override the test? Sorry, I am not too familiar with this.
– user2445507
Dec 1 '15 at 2:45
I'd guess the stringOverflow tests : high address detected :
isn't frommake
but from a test tool of the package (not properly terminated with line feed). Anyway, why don't you run this build in emulator which would be faster even with full instruction emulation?
– Netch
Dec 1 '15 at 6:48
I also ran into this issue while trying to install ROS on Raspbian following this guide: http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi Like user209877 I was able to build it successfully on a second try. I didn't run sudo apt-get install liblz4-dev before building the second time since it shouldn't be necessary.
– ajgriese
Apr 20 '17 at 2:14
add a comment |
I am trying to install ROS (Robot Operating System) on Raspbian. There are some dependencies that I need which are unavailable for Raspbian, so I must build them from source. One of these is lz4. Here is a link to the guide I am using: guide
I am running the command
apt-get source -b lz4
After 2 hours of running, it will eventually give the following error:
Starting LZ4 fuzzer (32-bits, )
Seed = 8544
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:34: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:26: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
I have also tried to use
apt-get source lz4
sudo apt-get build-dep lz4
dpkg-buildpackage -rfakeroot -uc -b
I get the same error.
Does anybody know what might be causing this, or how I could proceed to find a solution?
Thanks
apt raspberry-pi raspbian dpkg
I am trying to install ROS (Robot Operating System) on Raspbian. There are some dependencies that I need which are unavailable for Raspbian, so I must build them from source. One of these is lz4. Here is a link to the guide I am using: guide
I am running the command
apt-get source -b lz4
After 2 hours of running, it will eventually give the following error:
Starting LZ4 fuzzer (32-bits, )
Seed = 8544
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:34: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/root/catkin_ws/external_src/lz4-0.0~r131'
debian/rules:26: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
I have also tried to use
apt-get source lz4
sudo apt-get build-dep lz4
dpkg-buildpackage -rfakeroot -uc -b
I get the same error.
Does anybody know what might be causing this, or how I could proceed to find a solution?
Thanks
apt raspberry-pi raspbian dpkg
apt raspberry-pi raspbian dpkg
edited Dec 1 '15 at 5:48
user2445507
asked Dec 1 '15 at 2:29
user2445507user2445507
162
162
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Is it possible this could be due to a lack of memory? I am using the orange pi which has limited memory.
– user2445507
Dec 1 '15 at 2:42
This seems to be a relevant bug report: bugs.debian.org/cgi-bin/bugreport.cgi?bug=755170 It seems like it is just failing some test after building. Is there some way I can override the test? Sorry, I am not too familiar with this.
– user2445507
Dec 1 '15 at 2:45
I'd guess the stringOverflow tests : high address detected :
isn't frommake
but from a test tool of the package (not properly terminated with line feed). Anyway, why don't you run this build in emulator which would be faster even with full instruction emulation?
– Netch
Dec 1 '15 at 6:48
I also ran into this issue while trying to install ROS on Raspbian following this guide: http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi Like user209877 I was able to build it successfully on a second try. I didn't run sudo apt-get install liblz4-dev before building the second time since it shouldn't be necessary.
– ajgriese
Apr 20 '17 at 2:14
add a comment |
Is it possible this could be due to a lack of memory? I am using the orange pi which has limited memory.
– user2445507
Dec 1 '15 at 2:42
This seems to be a relevant bug report: bugs.debian.org/cgi-bin/bugreport.cgi?bug=755170 It seems like it is just failing some test after building. Is there some way I can override the test? Sorry, I am not too familiar with this.
– user2445507
Dec 1 '15 at 2:45
I'd guess the stringOverflow tests : high address detected :
isn't frommake
but from a test tool of the package (not properly terminated with line feed). Anyway, why don't you run this build in emulator which would be faster even with full instruction emulation?
– Netch
Dec 1 '15 at 6:48
I also ran into this issue while trying to install ROS on Raspbian following this guide: http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi Like user209877 I was able to build it successfully on a second try. I didn't run sudo apt-get install liblz4-dev before building the second time since it shouldn't be necessary.
– ajgriese
Apr 20 '17 at 2:14
Is it possible this could be due to a lack of memory? I am using the orange pi which has limited memory.
– user2445507
Dec 1 '15 at 2:42
Is it possible this could be due to a lack of memory? I am using the orange pi which has limited memory.
– user2445507
Dec 1 '15 at 2:42
This seems to be a relevant bug report: bugs.debian.org/cgi-bin/bugreport.cgi?bug=755170 It seems like it is just failing some test after building. Is there some way I can override the test? Sorry, I am not too familiar with this.
– user2445507
Dec 1 '15 at 2:45
This seems to be a relevant bug report: bugs.debian.org/cgi-bin/bugreport.cgi?bug=755170 It seems like it is just failing some test after building. Is there some way I can override the test? Sorry, I am not too familiar with this.
– user2445507
Dec 1 '15 at 2:45
I'd guess the string
Overflow tests : high address detected :
isn't from make
but from a test tool of the package (not properly terminated with line feed). Anyway, why don't you run this build in emulator which would be faster even with full instruction emulation?– Netch
Dec 1 '15 at 6:48
I'd guess the string
Overflow tests : high address detected :
isn't from make
but from a test tool of the package (not properly terminated with line feed). Anyway, why don't you run this build in emulator which would be faster even with full instruction emulation?– Netch
Dec 1 '15 at 6:48
I also ran into this issue while trying to install ROS on Raspbian following this guide: http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi Like user209877 I was able to build it successfully on a second try. I didn't run sudo apt-get install liblz4-dev before building the second time since it shouldn't be necessary.
– ajgriese
Apr 20 '17 at 2:14
I also ran into this issue while trying to install ROS on Raspbian following this guide: http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi Like user209877 I was able to build it successfully on a second try. I didn't run sudo apt-get install liblz4-dev before building the second time since it shouldn't be necessary.
– ajgriese
Apr 20 '17 at 2:14
add a comment |
2 Answers
2
active
oldest
votes
Are you using the full flash card. Make sure you expand the FS using the raspi-config utility. The build process checks the compression of various sizes of files (10Mb up to 6Gb) so you'll need some free space. I have raspbian-lite on an 8Gb card on my A+ and had no trouble building lz4 although it took about 2-3 hrs. You could also try add swap space.
add a comment |
Got the same and already set up another question:
I am installing ROS on my RPi and when I try to install liblz4-dev with:
$ cd ~/ros_catkin_ws/external_src
$ apt-get source -b lz4**
I get the following:
...
Starting LZ4 fuzzer (32-bits, )
Seed = 3703
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:47: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:33: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Build command 'cd lz4-0.0~r131 && dpkg-buildpackage -b -uc' failed.
E: Child process failed
Everything worked fine including 3.2.1 Unavailable Dependencies > libconsole-bridge-dev:
Would be grateful for advice.
But then it worked...I just ran: sudo apt-get install liblz4-dev before, but don't know if that was the problem.
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f246527%2ftrouble-when-building-lz4-from-source-recipe-for-target-test-fuzzer-failed%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Are you using the full flash card. Make sure you expand the FS using the raspi-config utility. The build process checks the compression of various sizes of files (10Mb up to 6Gb) so you'll need some free space. I have raspbian-lite on an 8Gb card on my A+ and had no trouble building lz4 although it took about 2-3 hrs. You could also try add swap space.
add a comment |
Are you using the full flash card. Make sure you expand the FS using the raspi-config utility. The build process checks the compression of various sizes of files (10Mb up to 6Gb) so you'll need some free space. I have raspbian-lite on an 8Gb card on my A+ and had no trouble building lz4 although it took about 2-3 hrs. You could also try add swap space.
add a comment |
Are you using the full flash card. Make sure you expand the FS using the raspi-config utility. The build process checks the compression of various sizes of files (10Mb up to 6Gb) so you'll need some free space. I have raspbian-lite on an 8Gb card on my A+ and had no trouble building lz4 although it took about 2-3 hrs. You could also try add swap space.
Are you using the full flash card. Make sure you expand the FS using the raspi-config utility. The build process checks the compression of various sizes of files (10Mb up to 6Gb) so you'll need some free space. I have raspbian-lite on an 8Gb card on my A+ and had no trouble building lz4 although it took about 2-3 hrs. You could also try add swap space.
answered Dec 31 '15 at 18:36
brianbrian
1
1
add a comment |
add a comment |
Got the same and already set up another question:
I am installing ROS on my RPi and when I try to install liblz4-dev with:
$ cd ~/ros_catkin_ws/external_src
$ apt-get source -b lz4**
I get the following:
...
Starting LZ4 fuzzer (32-bits, )
Seed = 3703
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:47: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:33: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Build command 'cd lz4-0.0~r131 && dpkg-buildpackage -b -uc' failed.
E: Child process failed
Everything worked fine including 3.2.1 Unavailable Dependencies > libconsole-bridge-dev:
Would be grateful for advice.
But then it worked...I just ran: sudo apt-get install liblz4-dev before, but don't know if that was the problem.
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
add a comment |
Got the same and already set up another question:
I am installing ROS on my RPi and when I try to install liblz4-dev with:
$ cd ~/ros_catkin_ws/external_src
$ apt-get source -b lz4**
I get the following:
...
Starting LZ4 fuzzer (32-bits, )
Seed = 3703
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:47: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:33: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Build command 'cd lz4-0.0~r131 && dpkg-buildpackage -b -uc' failed.
E: Child process failed
Everything worked fine including 3.2.1 Unavailable Dependencies > libconsole-bridge-dev:
Would be grateful for advice.
But then it worked...I just ran: sudo apt-get install liblz4-dev before, but don't know if that was the problem.
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
add a comment |
Got the same and already set up another question:
I am installing ROS on my RPi and when I try to install liblz4-dev with:
$ cd ~/ros_catkin_ws/external_src
$ apt-get source -b lz4**
I get the following:
...
Starting LZ4 fuzzer (32-bits, )
Seed = 3703
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:47: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:33: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Build command 'cd lz4-0.0~r131 && dpkg-buildpackage -b -uc' failed.
E: Child process failed
Everything worked fine including 3.2.1 Unavailable Dependencies > libconsole-bridge-dev:
Would be grateful for advice.
But then it worked...I just ran: sudo apt-get install liblz4-dev before, but don't know if that was the problem.
Got the same and already set up another question:
I am installing ROS on my RPi and when I try to install liblz4-dev with:
$ cd ~/ros_catkin_ws/external_src
$ apt-get source -b lz4**
I get the following:
...
Starting LZ4 fuzzer (32-bits, )
Seed = 3703
Overflow tests : high address detected : Makefile:277: recipe for target 'test-fuzzer' failed
make[3]: *** [test-fuzzer] Killed
make[3]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131/programs'
Makefile:98: recipe for target 'test' failed
make[2]: *** [test] Error 2
make[2]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:47: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/home/pi/ros_catkin_ws/external_src/lz4-0.0~r131'
debian/rules:33: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Build command 'cd lz4-0.0~r131 && dpkg-buildpackage -b -uc' failed.
E: Child process failed
Everything worked fine including 3.2.1 Unavailable Dependencies > libconsole-bridge-dev:
Would be grateful for advice.
But then it worked...I just ran: sudo apt-get install liblz4-dev before, but don't know if that was the problem.
edited Jan 11 '17 at 15:26
Mongrel
2,12331849
2,12331849
answered Jan 11 '17 at 15:10
user209877user209877
1
1
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
add a comment |
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
Is this meant to be a new question or is this meant to be an answer? If it is meant to be an answer, can you more clearly state your proposed solution and remove the extraneous details?
– HalosGhost
Jan 11 '17 at 15:32
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f246527%2ftrouble-when-building-lz4-from-source-recipe-for-target-test-fuzzer-failed%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
-apt, dpkg, raspberry-pi, raspbian
Is it possible this could be due to a lack of memory? I am using the orange pi which has limited memory.
– user2445507
Dec 1 '15 at 2:42
This seems to be a relevant bug report: bugs.debian.org/cgi-bin/bugreport.cgi?bug=755170 It seems like it is just failing some test after building. Is there some way I can override the test? Sorry, I am not too familiar with this.
– user2445507
Dec 1 '15 at 2:45
I'd guess the string
Overflow tests : high address detected :
isn't frommake
but from a test tool of the package (not properly terminated with line feed). Anyway, why don't you run this build in emulator which would be faster even with full instruction emulation?– Netch
Dec 1 '15 at 6:48
I also ran into this issue while trying to install ROS on Raspbian following this guide: http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi Like user209877 I was able to build it successfully on a second try. I didn't run sudo apt-get install liblz4-dev before building the second time since it shouldn't be necessary.
– ajgriese
Apr 20 '17 at 2:14