Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
617 views

Why does gcc not implicitly supply the -fPIC flag when compiling static libraries on x86_64

I've had numerous problems compiling shared objects that link statically against static libraries. This problem only shows up on x84_64 platforms. When doing the same compilation work on x86_32 I do ...
7
votes
9answers
8k views

Building ARM GNU Cross compiler

A similiar (less descriptive) post is here. I'm trying to roll my own tool chain using recent releases on Ubuntu and was hoping there was enough of a Linux community here that I could get specific ...
5
votes
2answers
832 views

Any good tutorials/books on GNU Tool Chain & Gnu Build System?

I'm looking for good tutorials/books on Gnu Tool Chain and Gnu Build System. To be more specific, I am looking for information that starts with just the source code & gradually adds build files ...
4
votes
4answers
5k views

arm-linux-gcc vs arm-elf-gcc

I am looking at uClinux system that builds the kernel with arm-linux-xxx, but builds the user apps with arm-elf-xxx. If the apps are intended to run on linux, wouldn't it be better to build ...
3
votes
2answers
362 views

Windows based development for ARM processors

I am a complete newbie to the ARM world. I need to be able to write C code, compile it, and then download into an ARM emulator, and execute. I need to use the GCC 4.1.2 compiler for the C code ...
3
votes
1answer
3k views

How to cross compile from Mac OS X to Linux x86?

I'm running Mac OS X 10.5.8 and want to compile for target CentOS 5.3 with GCC 4.1.2. How could I: Compile GCC 4.1.2 toolchain and related tools? Use that tool to cross compile for target CentOS ...
3
votes
13answers
4k views

On Windows is there a **light-weight** IDE that can be used both with C and Perl?

When I asked this previously I should have mentioned that it's particularly a light-weight IDE that I'm after, so I’m having to ask again as a different question. Something that is not just a text ...
2
votes
1answer
76 views

GDB doesn't find line numbers, objdump does

I'm using DDD/GDB to debug a homebrew game running on NintendoDS, built with "arm-eabi-gcc (devkitARM release 32) 4.5.1". FYI, I uploaded the unstripped .elf binary here, in case anybody wants to ...
2
votes
1answer
78 views

How to obtain the BFD architecture specification for the current platform?

I've embedded a text file in a C program using the following method: http://www.linuxjournal.com/content/embedding-file-executable-aka-hello-world-version-5967 a.out:prog.c file.text objcopy ...
2
votes
2answers
255 views

load time base address cortex-m3 bare metal

I'm working on a project on a cortex-m3 CPU with bare-metal environment. Due to software upgrade needs the executable image on the CPU can be in one of two addresses in the flash memory which presents ...
2
votes
1answer
67 views

Autofoo test for maximum version of Python

I'm trying to get autofoo to test for a maximum version of Python rather than a minimum. Example: AC_REQUIRE([AM_PATH_PYTHON([2.7])]) ... will test for Python >= 2.7, and will probably turn up ...
2
votes
3answers
958 views

Rendering Certain Character Glyph on iPhone

I am currently using the iPhone SDK to create an app that utilizes Indic scripts. However, the iPhone has issues with rendering certain glyphs in many Indic scripts. For example: प + ् + र = प्र ...
2
votes
3answers
880 views

embedding absolute path for shared libraries

Using a vendor provided cross-compiling toolchain (apparently an OpenEmbedded derivative), I'm unable to embed the absolute path to third-party (open source, compiled in house)libraries. With the ...
1
vote
0answers
72 views

ARM cross compiler with excessive link times

I am currently porting a large code base to multiple arm platforms using various tool chains provided by device manufactures. If I build and link the code base on linux it takes roughly 30 seconds to ...
1
vote
3answers
79 views

How do I get a list of all declared classes inheriting from a particular class in C++

I know that isn't exactly possible in C++, but maybe a toolchain that can generate code which has a function, which when called gives me a list of all those classes. For example, across multiple files ...
1
vote
1answer
150 views

Why does my static build require shared libraries?

Why does my static build require shared libraries? Every so often I get these warnings from my linker... (at the moment it is happening with openssh-5.2p1) The warnings look similar to: "Using ...
1
vote
3answers
1k views

Building Gnuarm toolchain from source

I want to build a toolchain from gnuarm.org from sources. I don't want to use binary version because i'm running x64 linux. Can you point me to some kind of tutorial?
0
votes
2answers
56 views

Basics of compiling binary with no dependencies using gnu toolchain

I'm trying to make an audio file I create slow down using SoX, and although I can easily compile the source files on the linux machine I use regularly, I need to transfer the binary to another linux ...
0
votes
1answer
34 views

how to add g++ support in toolchain

I want to add support for g++ compiler in my toochain. I am building toolchain for powerpc platform.I googled about it and found that we have to add external toolchian in our existing toolchain. I ...
0
votes
0answers
61 views

How to specify architecture for sde-objcopy?

I need to convert an picture to an object file(.o) use sde-objcopy, then I can use this picture in our no-os system. I had test the objcopy command, it works well on my PC(Fedora 12). For example, the ...
0
votes
1answer
105 views

IDE for existing Makefile's on Linux

What would be the best/quickest way to have a IDE-type setup when I have existing C/C++ source with several Makefiles (library, executable etc.). I need to work with compiler errors in the IDE and ...
0
votes
2answers
189 views

Setting earlier minimum kernel version when compiling static libraries

My distribution (Arch Linux) recently increased the minimum supported Linux kernel version for its toolchain. I am compiling a web application that I link statically and then upload to a web server, ...
0
votes
1answer
177 views

Debugging workflow aspects of Visual Studio development vs. “Linux” development?

OK, so there are numerous questions around, asking for a "Visual Studio equivalent on Linux" or a variation of this question. (here, here, here, ...) I would like to focus on one aspect and ask how ...
0
votes
1answer
333 views

How do I use the GNU toolchain to learn C programming?

I am new to programming, and even newer to Linux. I was told that Linux is the best OS to learning to program as it lets a programmer interface closely with the machine architecture. I heard a lot ...
0
votes
1answer
849 views

iPhone SDK Copy File to Main System

Many thanks to @fabkk2002 who helped me adjust the Helvetica font on my iPhone to fully support Indic glyphs and rendering on my iPhone for an app I am creating. This leaves me with another problem. ...