element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Cross build environment for Raspberry PI (or any Linux SBC) on Windows.
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 2 replies
  • Answers 2 answers
  • Subscribers 664 subscribers
  • Views 798 views
  • Users 0 members are here
  • cross-compiling
  • raspberry_pi
  • raspberrypi
  • cross-platform
Related

Cross build environment for Raspberry PI (or any Linux SBC) on Windows.

umeshdeshmukh2024
umeshdeshmukh2024 over 5 years ago

I am used to microcontroller code development process. Recently to up my game I am trying to learn programming for raspberry pi.

Building code on Raspberry Pi is very slow.The problems or questions I am facing are given below.

 

1. Why is there are different tool chains for baremetal(arm-none-eabi) and linux target (arm-none-linux-gnueabihf)?

2. How to do cross build for linux device drivers?

3. If you want to cross build using some libraries for example openCV, how to do it?

  • Sign in to reply
  • Cancel
Parents
  • aswinvenu
    0 aswinvenu over 5 years ago

    Hi Umesh,

    Let me answer your question in the same order you asked.

     

    1. Why is there are different tool chains for baremetal(arm-none-eabi) and linux target (arm-none-linux-gnueabihf)?

              This depends on the architecture of the microprocessor/controller. If you have a relatively simple single core system (like ARM Cortex M series R series ) use arm-none-eabi. If you have a application processor like ARM Cortex A series you need to use arm-none-linux-gnueabihf. This is because most of the application processor run with a kernel and operating system. Breaking down the nomenclature GNU Embedded Application Binary Interface. GNU ABIs are standards. You can read about it online.

    Both these are used when you are not planning to run a linux operating system on the processor.

    To note here there are other versions of gnueabi gcc available called arm-none-linux-gnueabi (old versions of raspberry pis used to have this standard). The difference is HF (Hard Float) version has floating point support on the processor. On gnueabi version floating point support has to be added using software (using the same 32 bit length registers).

     

    2. How to do cross build for linux device drivers?

        I personally haven't cross build linux kernel on Windows PC. But when you corss build the Linux kernel driver you need to use arm-linux-gnueabihf- toolchain. Also you need to select the right target platform.

    The make command will look something like this : make ARCH=arm CROSS_COMPILE=<TOOLCHAIN_DIR>/bin/arm-linux-gnueabihf- oldconfig

     

    3. If you want to cross build using some libraries for example openCV, how to do it?

       Okay here openCV is an application code. So you use the same gcc-arm-linux-gnueabihf for cross compiling it. Try to use a virtual machine and run any Linux operating system on that. Then use that for all you crosscompiling experiments. Setting up windows env will sometimes give you headaches.

     

    I think I answered your questions.

     

    Regards,

    Aswin

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • aswinvenu
    0 aswinvenu over 5 years ago

    Hi Umesh,

    Let me answer your question in the same order you asked.

     

    1. Why is there are different tool chains for baremetal(arm-none-eabi) and linux target (arm-none-linux-gnueabihf)?

              This depends on the architecture of the microprocessor/controller. If you have a relatively simple single core system (like ARM Cortex M series R series ) use arm-none-eabi. If you have a application processor like ARM Cortex A series you need to use arm-none-linux-gnueabihf. This is because most of the application processor run with a kernel and operating system. Breaking down the nomenclature GNU Embedded Application Binary Interface. GNU ABIs are standards. You can read about it online.

    Both these are used when you are not planning to run a linux operating system on the processor.

    To note here there are other versions of gnueabi gcc available called arm-none-linux-gnueabi (old versions of raspberry pis used to have this standard). The difference is HF (Hard Float) version has floating point support on the processor. On gnueabi version floating point support has to be added using software (using the same 32 bit length registers).

     

    2. How to do cross build for linux device drivers?

        I personally haven't cross build linux kernel on Windows PC. But when you corss build the Linux kernel driver you need to use arm-linux-gnueabihf- toolchain. Also you need to select the right target platform.

    The make command will look something like this : make ARCH=arm CROSS_COMPILE=<TOOLCHAIN_DIR>/bin/arm-linux-gnueabihf- oldconfig

     

    3. If you want to cross build using some libraries for example openCV, how to do it?

       Okay here openCV is an application code. So you use the same gcc-arm-linux-gnueabihf for cross compiling it. Try to use a virtual machine and run any Linux operating system on that. Then use that for all you crosscompiling experiments. Setting up windows env will sometimes give you headaches.

     

    I think I answered your questions.

     

    Regards,

    Aswin

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube