0

I'm trying run ubuntu snappy core on qemu. To do that i need kernel for snappy core. I found a description how to do that here : custom linux kernel for snappy core

They said that i need a cross compiler so i follow install cross compiler description to install arm-none-linux-gnu-gcc but i can't dowload cross compiler at the link they provide so I follow this link to download cross compiler: download.opencontroller.com/tools/arm-2013.05-24-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2

Then i follow the decription in install cross compiler to install cross compiler. But when i use command: "make ARCH=arm" to buid kernel i recieve error: make: arm-none-linux-gnueabi-gcc: Command not found There are some people have this error too and they said that it's because they are using 64bit version which is not my case (I'm using ubuntu 32bit version) .Can some one help me out ?

here is the line that i append to .bashrc file:export PATH=$PATH:/home/thanh/draft/arm-2013.05/arm-none-linux-gnueabi/bin All my .bashrc file here: drive.google.com/file/d/0By0_QpVISV27Z0pZTUIwN3FKMWc/view?usp=sharing

Community
  • 1
  • 1
  • 1
    why no one answer me ? – Noobscripter Jan 01 '16 at 12:43
  • Welcome to StackOverflow! Please bear in mind that questions on this site are answered by volunteers; there is no SLA and you are not entitled to an immediate response. Plus today is New Year's Day in the Julian calendar, which is a public holiday in many jurisdictions. – APC Jan 01 '16 at 13:41
  • So simple command `arm-none-linux-gnueabi-gcc` works in your environment (that is, it fails, but with reason other than `Command not found`)? You may try to set `CROSS_COMPILE` variable to `/home/thanh/draft/arm-2013.05/arm-none-linux-gnueabi/bin/arm-none-linux-gnueabi-`. – Tsyvarev Jan 01 '16 at 16:56
  • @Tsyvarev can you explain more clearly ? i don't understand what you mean. How can i set cross_compile variable to /home/thanh/draft/arm-2013.05/arm-none-linux-gnueabi/bin/arm-none-linux-gnueabi‌​- ? – Noobscripter Jan 04 '16 at 19:25
  • Like you pass variable `ARCH` to make, you may pass other variables: `make ARCH=arm CROSS_COMPILE=`. – Tsyvarev Jan 04 '16 at 19:43
  • i have made it now. Thank you :) – Noobscripter Jan 04 '16 at 20:22

0 Answers0