Tagged Questions
CodeSourcery is a supplier of open-source "Sourcery CodeBench" toolchains (integrating GCC, GDB, etc.) for ARM, MIPS, Power, x86, and other embedded processor architectures. Sourcery CodeBench has both free (as in beer) "Lite" editions and commercially-supported versions of the toolchains. CodeSourcery is a part of Mentor Graphics.
4
votes
1answer
546 views
CodeWarrior vs. CodeSourcery G++ for ColdFire Development
I am interested in any comparative analysis between Freescale's CodeWarrior tool chain and CodeSourcery G++ for developing embedded applications for the ColdFire family of processors.
3
votes
7answers
2k views
GCC C++ (ARM) and const pointer to struct field
Let's say there is a simple test code
typedef struct
{
int first;
int second;
int third;
} type_t;
#define ADDRESS 0x12345678
#define REGISTER ((type_t*)ADDRESS)
const int data = ...
2
votes
2answers
130 views
GCC alias to function outside of translation unit -AKA- is this even the right tool for the job?
I'm working with FreeRTOS on an STM32 (Cortex-M3), and using the CMSIS library from ST to bootstrap everything.
The CMSIS library defines the weak symbol SVC_Handler in the startup ".s" file. It ...
1
vote
1answer
87 views
Create a Hello World Executable for BeagleBoard
I am trying to run a HelloWorld project on BeagleBoard. For this I am using RVDS to create the library and then CodeSourcery to create the executable for BeagleBoard.
To create a library through RVDS ...
1
vote
1answer
26 views
What do I need to do to install and run Code Sourcery on an x86 64-bit Windows host system?
I have seen this question asked for a Linux host system but not for Windows.
I have a Windows 7 64-bit host system. I am running into a 32 bit issue I think and I see this vague phrase in the Code ...
1
vote
1answer
67 views
gdb - generate-core-file for remote target?
I'm debugging with the Codesourcery version of gdb for ARM (i.e. arm-none-eabi-gdb) and attempting to generate a corefile for later inspection. OpenOCD is my GDB target. All gdb tells me when I run ...
1
vote
1answer
603 views
set global gcc default search paths
when running
arm-none-linux-gnueabi-gcc -print-search-dirs | grep libraries | sed 's/:/\n/g'
I get the following output:
libraries
=/opt/codesourcery/lib/gcc/arm-none-linux-gnueabi/4.4.1/
...
1
vote
2answers
456 views
Is it possible to run a native arm binary on a non-rooted android phone?
Well, I've been diving in the murky waters of low-level Android programming (native C/C++ using the CodeSourcery toolchain). I tried out the executable on an emulator and it worked. I'd like to try it ...
1
vote
3answers
594 views
Unknown GCC error, while compiling for ARM NEON (Critical)
I have a ARM NEON Cortex-A8 based processor target. I was optimizing my code by making use of NEON. But when I compile my code I get this strange error. Don't know how to fix this.
I'm trying to ...
0
votes
0answers
55 views
Cross-compiling Linux kernel for ARM on Windows using Sourcery Toolchain
I am trying to cross-compile a Linux kernel for an ARM-target (Freescale i.Mx28) on a windows host. I know that this approach is not the best one compared to using a Linux host but unfortunately it's ...
0
votes
0answers
291 views
Compiling C source file with Codesourcery G++ Lite Toolchain in Eclipse
I've installed the GNU ARM Eclipse Plugin to integrate the Sourcery G++ Lite Toolchain with Eclipse Helios for C/C++ Developers (Windows version). I created a new C Project (ARM Cross Target ...
0
votes
1answer
147 views
How to stop mingw and msys from mangling path names given at the command line?
On Windows, I'm cross-compiling a program for ARM/linux using CodeSourcery's cross-compiler suite. I use mingw msys as my command interpreter, and very often it will mangle my paths and pathnames. For ...
0
votes
0answers
107 views
Cross compilation of OpenAL or SFML on ARM9
I'm writting this post to know how to cross compile audio librairie (OpenAL or SFML) with Codesourcery.
I would like to load a C++ program using those librairies on the ARM9 processor of an OMAP ...
0
votes
0answers
372 views
how to cross-compile iptables for android?
how to cross-compile iptables for android (ARM : Cortext-A8) architecture using Sourcery_G++_Lite_for_ARM_GNU_Linux. i tried the method given in
...
0
votes
1answer
882 views
CodeSourcery giving compilation error: missing bits/c++config.h
in my project I'm making use of Eigen C++ library for linear algebra. ONLY when I turn on the vectorization flags (-mfpu=neon -mfloat-abi=softfp) for ARM NEON, I get a compiler error - c++config.h no ...
0
votes
1answer
540 views
Linux USB debug connection to LuminaryMicro evaluation board
I am trying to connect a Stellaris LM3S8962 evaluation kit to a linux host machine. I am using the CodeSourcery G++ for the development toolchain. When I try to run a helloworld example the ...