I am trying to use Xcode 4 (with external firmware) for embedded Linux to develop the ARM kernel. Please note that I have all the cross-compilers and tools that work from the command line on a Mac, but would like to use Xcode for convenience.
The standard make phase (make ARCH = arm CROSS_COMPILE = arm-none-eabiuImage) works fine, but cannot figure out how:
(a) Create a target that requires interactive input in the shell (do ARCH = arm menuconfig). This always complains about โTerminal opening error: unknownโ, and with Xcode 4 in the background. Any ideas how I can open an interactive shell in the foreground?
(b) Use arm-none-eabi-gdb as my debugger. This is optional, but will be very neat.
Thank!
source
share