Radarcape:ARM Crosscompiler: Difference between revisions
Jump to navigation
Jump to search
imported>Dl4mea Created page with "Currently, these are the tools we are using for the development of the Linux applicationin * Angstrom gcc 4.7.3 toolchain for ARM * Boost 1.53.0 * Eclipse IDE" |
imported>Dl4mea No edit summary |
||
Line 4: | Line 4: | ||
* Boost 1.53.0 | * Boost 1.53.0 | ||
* Eclipse IDE | * Eclipse IDE | ||
===ldd missing=== | |||
http://stackoverflow.com/questions/6150000/cross-compiler-ldd | |||
<source lang="bash"> | |||
#!/bin/sh | |||
arm-none-linux-gnueabi-readelf -a $1 | grep "Shared library:" | |||
</source> |
Latest revision as of 20:58, 1 November 2014
Currently, these are the tools we are using for the development of the Linux applicationin
- Angstrom gcc 4.7.3 toolchain for ARM
- Boost 1.53.0
- Eclipse IDE
ldd missing
http://stackoverflow.com/questions/6150000/cross-compiler-ldd
#!/bin/sh
arm-none-linux-gnueabi-readelf -a $1 | grep "Shared library:"