/bin/bash: arm-eabi-gcc: command not found
/bin/bash: arm-eabi-gcc: command not found
dirname: missing operand
Try `dirname --help' for more information.
/bin/bash: arm-eabi-gcc: command not found
/bin/bash: arm-eabi-ld: command not found
/bin/bash: arm-eabi-gcc: command not found
dirname: missing operand
Try `dirname --help' for more information.
/bin/bash: arm-eabi-gcc: command not found
dirname: missing operand
Try `dirname --help' for more information.
arm-eabi-gcc -DDO_DEPS_ONLY \
-g -Os -fno-common -ffixed-r8 -msoft-float -D__KERNEL__ -I/home/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem -pipe -DCONFIG_ARM -D__ARM__ -march=armv5 -Wall -Wstrict-prototypes \
-o lib/asm-offsets.s lib/asm-offsets.c -c -S
/bin/bash: arm-eabi-gcc: command not found
make: *** [lib/asm-offsets.s] Error 127
1
A
回答
2
如果正確導出工具鏈路徑,那麼您的問題與32位和64位不匹配有關。也許您試圖運行32 bit executable on 64 bit PC
。
你應該安裝包「IA32-庫」
0
也許工具鏈是不正確的設置。在編輯/ etc/profile之後,你應該執行commond:source/etc/profile。 或者,後安裝工具鏈,做讓前,執行: 出口ARCH =手臂 出口CROSS_COMPILE =臂eabi- 之後,做讓
2
-1
如果您碰巧遇到了這個錯誤,當您安裝瞭如arm-eabi-gcc,arm-eabi-g ++等工具鏈時,可以像這樣設置toochain的完整路徑。
出口CROSS_COMPILE = /全路徑/ ARM-Linux的eabi-
的完整路徑取決於你enviornment以上。
+2
這個答案增加了前面答案中沒有說明的內容。 –
相關問題
- 1. 交叉編譯錯誤gdbserver
- 2. 交叉編譯ASM錯誤
- 3. 交叉編譯「OpenSSL」錯誤
- 4. 交叉編譯錯誤
- 5. -fPIC錯誤交叉編譯openssl
- 6. 交叉編譯錯誤在Ubuntu 14
- 7. Xcode的交叉編譯的Cocos2D錯誤
- 8. 交叉編譯Qt4:uic段錯誤
- 9. Windows交叉編譯Python錯誤
- 10. 錯誤設置去交叉編譯
- 11. 錯誤交叉編譯wsO2 CPP
- 12. amigaos交叉編譯:'autom4te2.64'錯誤
- 13. 錯誤爲Raspbian交叉編譯cpp-netlib
- 14. Tilera交叉編譯 - 鏈接錯誤
- 15. glibc交叉編譯配置錯誤
- 16. 交叉編譯的代碼與升壓給編譯錯誤
- 17. 交叉編譯爲Android使用NDK失敗,編譯器錯誤
- 18. Unity iOS編譯錯誤:交叉編譯作業Mono.WebBrowser.dll失敗
- 19. Qt交叉編譯
- 20. 交叉編譯ldd
- 21. Beaglebone交叉編譯
- 22. Qt - 交叉編譯
- 23. Android交叉編譯
- 24. 交叉編譯libSDL
- 25. ARM交叉編譯
- 26. cmake交叉編譯
- 27. qt交叉編譯
- 28. 交叉編譯器
- 29. Microblaze交叉編譯
- 30. QTcreator交叉編譯
ia32-libs在最新的Ubuntu 16.04中已棄用。它適用於我的等價庫「lib32z1」,「lib32ncurses5」的apt-get。 – Hemant