Cross compiling Boost for ARM on Windows2019 Community Moderator ElectionTroubles with cross compiling boostCross-Compile of Boost for GCC ARM (Linux) from Windows building .o but not .aBoost arm cross-compilation failsCross-compiling Freetype 2.5.3 for AndroidCross Compiling LXML for ARMCross Compile Ubuntu eclipse to arm beagleboneError when trying to install Boost libraries in Cygwin via bootstrap.shcross compile boost libraries from windows to linuxboost library cross compilation for armCross-compiling boost 1.69.0 for ARM

What has been your most complicated TikZ drawing?

It's a yearly task, alright

How to discourage/prevent PCs from using door choke-points?

Deleting missing values from a dataset

Does the Bracer of Flying Daggers benefit from the Dueling Fighting style?

US to Europe trip with Canada layover- is 52 minutes enough?

Why don't MCU characters ever seem to have language issues?

When two POV characters meet

Does splitting a potentially monolithic application into several smaller ones help prevent bugs?

Prove that the total distance is minimised (when travelling across the longest path)

Single word request: Harming the benefactor

Touchscreen-controlled dentist office snowman collector game

Is Adobe Illustrator too heavy for handling complex EPSs?

Is it true that real estate prices mainly go up?

Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?

Is all copper pipe pretty much the same?

Running a subshell from the middle of the current command

Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?

Question about partial fractions with irreducible quadratic factors

Are there situations where a child is permitted to refer to their parent by their first name?

Good allowance savings plan?

The three point beverage

Nimitta - sutta references

Should QA ask requirements to developers?



Cross compiling Boost for ARM on Windows



2019 Community Moderator ElectionTroubles with cross compiling boostCross-Compile of Boost for GCC ARM (Linux) from Windows building .o but not .aBoost arm cross-compilation failsCross-compiling Freetype 2.5.3 for AndroidCross Compiling LXML for ARMCross Compile Ubuntu eclipse to arm beagleboneError when trying to install Boost libraries in Cygwin via bootstrap.shcross compile boost libraries from windows to linuxboost library cross compilation for armCross-compiling boost 1.69.0 for ARM










0















I'm building Boost inside Intel's MINGW shell for ARM on Windows 10.



I've run ./bootstrap and configured project-config.jam with using gcc : arm : arm-linux-gnueabihf-g++ ; but when I run



./b2 --build-dir=/tmp toolset=gcc-arm stage


I have this error:



User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
$ ./bjam install toolset=gcc-arm --prefix=./lib
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/tools/gcc.jam:84: in gcc.init from module gcc
error: toolset gcc initialization:
error: provided command 'arm-linux-gnueabihf-g++' not found
error: initialized from project-config.jam:12
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/toolset.jam:43: in toolset.using from module toolset
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/project.jam:1052: in using from module project-rules
project-config.jam:12: in modules.load from module project-config
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:249: in load-config from module build-system
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:412: in load-configuration-files from module build-system
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:524: in load from module build-system
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/modules.jam:295: in import from module modules
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/bootstrap.jam:139: in boost-build from module
/cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/boost-build.jam:17: in module scope from module


But arm-linux-gnueabihf-g++ can be found in the $PATH:



User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
$ which arm-linux-gnueabihf-g++
/c/intelfpga/18.1/embedded/ds-5/sw/gcc/bin/arm-linux-gnueabihf-g++









share|improve this question


























    0















    I'm building Boost inside Intel's MINGW shell for ARM on Windows 10.



    I've run ./bootstrap and configured project-config.jam with using gcc : arm : arm-linux-gnueabihf-g++ ; but when I run



    ./b2 --build-dir=/tmp toolset=gcc-arm stage


    I have this error:



    User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
    $ ./bjam install toolset=gcc-arm --prefix=./lib
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/tools/gcc.jam:84: in gcc.init from module gcc
    error: toolset gcc initialization:
    error: provided command 'arm-linux-gnueabihf-g++' not found
    error: initialized from project-config.jam:12
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/toolset.jam:43: in toolset.using from module toolset
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/project.jam:1052: in using from module project-rules
    project-config.jam:12: in modules.load from module project-config
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:249: in load-config from module build-system
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:412: in load-configuration-files from module build-system
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:524: in load from module build-system
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/modules.jam:295: in import from module modules
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/bootstrap.jam:139: in boost-build from module
    /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/boost-build.jam:17: in module scope from module


    But arm-linux-gnueabihf-g++ can be found in the $PATH:



    User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
    $ which arm-linux-gnueabihf-g++
    /c/intelfpga/18.1/embedded/ds-5/sw/gcc/bin/arm-linux-gnueabihf-g++









    share|improve this question
























      0












      0








      0








      I'm building Boost inside Intel's MINGW shell for ARM on Windows 10.



      I've run ./bootstrap and configured project-config.jam with using gcc : arm : arm-linux-gnueabihf-g++ ; but when I run



      ./b2 --build-dir=/tmp toolset=gcc-arm stage


      I have this error:



      User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
      $ ./bjam install toolset=gcc-arm --prefix=./lib
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/tools/gcc.jam:84: in gcc.init from module gcc
      error: toolset gcc initialization:
      error: provided command 'arm-linux-gnueabihf-g++' not found
      error: initialized from project-config.jam:12
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/toolset.jam:43: in toolset.using from module toolset
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/project.jam:1052: in using from module project-rules
      project-config.jam:12: in modules.load from module project-config
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:249: in load-config from module build-system
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:412: in load-configuration-files from module build-system
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:524: in load from module build-system
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/modules.jam:295: in import from module modules
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/bootstrap.jam:139: in boost-build from module
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/boost-build.jam:17: in module scope from module


      But arm-linux-gnueabihf-g++ can be found in the $PATH:



      User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
      $ which arm-linux-gnueabihf-g++
      /c/intelfpga/18.1/embedded/ds-5/sw/gcc/bin/arm-linux-gnueabihf-g++









      share|improve this question














      I'm building Boost inside Intel's MINGW shell for ARM on Windows 10.



      I've run ./bootstrap and configured project-config.jam with using gcc : arm : arm-linux-gnueabihf-g++ ; but when I run



      ./b2 --build-dir=/tmp toolset=gcc-arm stage


      I have this error:



      User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
      $ ./bjam install toolset=gcc-arm --prefix=./lib
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/tools/gcc.jam:84: in gcc.init from module gcc
      error: toolset gcc initialization:
      error: provided command 'arm-linux-gnueabihf-g++' not found
      error: initialized from project-config.jam:12
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/toolset.jam:43: in toolset.using from module toolset
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build/project.jam:1052: in using from module project-rules
      project-config.jam:12: in modules.load from module project-config
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:249: in load-config from module build-system
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:412: in load-configuration-files from module build-system
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/build-system.jam:524: in load from module build-system
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/modules.jam:295: in import from module modules
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/tools/build/src/kernel/bootstrap.jam:139: in boost-build from module
      /cygdrive/c/my/Work/SoftwareTest/boost_1_61_0/boost-build.jam:17: in module scope from module


      But arm-linux-gnueabihf-g++ can be found in the $PATH:



      User@UserLaptop MINGW64 /c/my/Work/SoftwareTest/boost_1_61_0
      $ which arm-linux-gnueabihf-g++
      /c/intelfpga/18.1/embedded/ds-5/sw/gcc/bin/arm-linux-gnueabihf-g++






      boost cross-compiling






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 17:35









      jackhabjackhab

      6,5112580117




      6,5112580117






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Since it's Windows in project-config.jam gcc should be specified with extension arm-linux-gnueabihf-g++.exe not arm-linux-gnueabihf-g++.






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fstackoverflow.com%2fquestions%2f55029081%2fcross-compiling-boost-for-arm-on-windows%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Since it's Windows in project-config.jam gcc should be specified with extension arm-linux-gnueabihf-g++.exe not arm-linux-gnueabihf-g++.






            share|improve this answer



























              0














              Since it's Windows in project-config.jam gcc should be specified with extension arm-linux-gnueabihf-g++.exe not arm-linux-gnueabihf-g++.






              share|improve this answer

























                0












                0








                0







                Since it's Windows in project-config.jam gcc should be specified with extension arm-linux-gnueabihf-g++.exe not arm-linux-gnueabihf-g++.






                share|improve this answer













                Since it's Windows in project-config.jam gcc should be specified with extension arm-linux-gnueabihf-g++.exe not arm-linux-gnueabihf-g++.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 15:04









                jackhabjackhab

                6,5112580117




                6,5112580117





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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%2fstackoverflow.com%2fquestions%2f55029081%2fcross-compiling-boost-for-arm-on-windows%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

                    AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

                    Алба-Юлія

                    Захаров Федір Захарович