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










1















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










share|improve this question
















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 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















1















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










share|improve this question
















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 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













1












1








1


1






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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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

















  • 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 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
















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










2 Answers
2






active

oldest

votes


















0














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.






share|improve this answer






























    0














    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.






    share|improve this answer

























    • 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










    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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.






    share|improve this answer



























      0














      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.






      share|improve this answer

























        0












        0








        0







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 31 '15 at 18:36









        brianbrian

        1




        1























            0














            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.






            share|improve this answer

























            • 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















            0














            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.






            share|improve this answer

























            • 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













            0












            0








            0







            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.






            share|improve this answer















            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.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            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

















            • 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

















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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

            Popular posts from this blog

            Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

            Frič See also Navigation menuinternal link

            Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant