Trouble when building LZ4 from source: “recipe for target 'test-fuzzer' failed”many many dpkg errors...

Why are so many countries still in the Commonwealth?

Iterate over non-const variables in C++

A planet illuminated by a black hole?

Why is chess failing to attract big name sponsors?

Can two figures have the same area, perimeter, and same number of segments have different shape?

USA: Can a witness take the 5th to avoid perjury?

Why can't my huge trees be chopped down?

How may I concisely assign different values to a variable, depending on another variable?

Does the Intel 8086 CPU have user mode and kernel mode?

What does "see" in "the Holy See" mean?

Terence Tao–type books in other fields?

Spoken encryption

Is it legal to use cash pulled from a credit card to pay the monthly payment on that credit card?

Where to place an artificial gland in the human body?

Is it normal practice to screen share with a client?

Trapped in an ocean Temple in Minecraft?

Commercial jet accompanied by small plane near Seattle

Is it legal for private citizens to "impound" e-scooters?

On the strategic interest of giving long lasting stock orders

Invert Some Switches on a Switchboard

This message is flooding my syslog, how to find where it comes from?

How were the LM astronauts supported during the moon landing and ascent? What were the max G's on them during these phases?

How can I stop myself from micromanaging other PCs' actions?

High income, sudden windfall



Trouble when building LZ4 from source: “recipe for target 'test-fuzzer' failed”


many 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 linuxSetting up RealTek Driver on Raspberry Pi 3 B+






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







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 42 mins 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 42 mins 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 bronze badges




162 bronze badges





bumped to the homepage by Community 42 mins 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 42 mins 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,1363 gold badges19 silver badges50 bronze badges




            2,1363 gold badges19 silver badges50 bronze badges










            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







            Popular posts from this blog

            Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

            Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

            Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...