Questions tagged [gnu-toolchain]

The GNU toolchain is a broad collection of programming tools produced by the GNU Project. These tools form a toolchain (a suite of tools used in a serial manner) used for developing software applications and operating systems. The GNU toolchain plays a vital role in development of Linux, some BSD systems, and software for embedded systems.

Consider adding specific tool tags.

Cross platform portability

  • - general tag for auto-tool suite.
  • - tool for generating a configure script.
  • - makefiles generation tool.
  • - library portability tool.
  • - for use of the output of autoconf; a configure script.
  • - language used by many autotools.
  • - database of install library options.
  • - the gnu building program.

Code generation

  • - the 'C' compiler.
  • - an assembler.
  • - a yacc tool; parser generator.
  • - the gnu scanner; text to tokens.
  • - the gnu C++ compiler.
  • - a collection of support tools for building. Also:
  • - a newer gnu linker
149 questions
0
votes
1 answer

how to fix configure script for x86_64-mu-linux-gnu host toolchain prefix?

while porting vpp project into buildroot packaging system a new/unusual/irregular host name being discovered: checking host system type... x86_64-mu-linux-gnu while in buildroot when x86_64 is selected, the default toolchain x86_64-linux is…
Oleg Kokorin
  • 2,288
  • 2
  • 16
  • 28
0
votes
1 answer

How to add wxWidgets to linaro toolchain and x-compile in Win7 for Linux Arm?

I develop on Windows7 and need to cross-compile for a Beaglebone Black (running a Debian Jessie linux) Using a Linaro toolchain, I'm able to compile a "Hello Word" console executable using various IDEs (Codelite, Code::Block and Eclipse DS-5). Now I…
Parduz
  • 662
  • 5
  • 22
0
votes
0 answers

Consolidating a Unix toolchain development environments: cygwin, MSYS2, git bash, Qt

I have used cygwin and emacs for a long time and there have always been problems integrating. xemacs under cygwin worked perfectly but require xwindows running which was unpleasant. Then I added git bash to the mix. Now if you count, I have 4…
Dov
  • 8,000
  • 8
  • 46
  • 75
0
votes
1 answer

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 the debugging workflow possibly differs on…
Martin Ba
  • 37,187
  • 33
  • 183
  • 337
0
votes
1 answer

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 about the GNU tool-chain and that it provides the…
Harsh Vardhan
  • 199
  • 1
  • 12
0
votes
1 answer

GNU ARM Embedded Toolchain Installation Issue

I am trying to install a GNU ARM Embedded Toolchain in order to integrate it with Sublime Text 3 in an Ubuntu machine. I followed this steps, but I got an error: 1.Download the packet from "https://launchpad.net/gcc-arm-embedded/+downloadGo", then…
FabioDev
  • 694
  • 1
  • 12
  • 27
0
votes
1 answer

Unable to build static binaries with Openwrt toolchain : Undefined reference to _Unwind_Resume and __gcc_personality_v0

I am not able to build static binaries with the openwrt toolchain. # staging_dir/toolchain-i386_i686_gcc-4.8-linaro_glibc-2.21/bin/i486-openwrt-linux-gnu-gcc -o /tmp/main /tmp/main.c -static /tmp/main.c: In function 'main': /tmp/main.c:3:2: warning:…
Elison Niven
  • 236
  • 3
  • 12
0
votes
1 answer

Can gcc produce binary for Arm without cross compilation

Can we configure gcc running on intel x64 architecture to produce binary for ARM chip by just passing some flags to gcc and not using a cross compiler.
mapuna
  • 53
  • 1
  • 5
0
votes
2 answers

ARM GNU toolcahins confusion

I am always confused then it is about ARM architecture toolchain. I always see that there is two oppisite sides: ARM ltd. official and GNU community. ARM provides official tools while GNU community provide free and open source flexible and more…
0
votes
0 answers

GCC error unqualified-id before '('

While i'm trying to build gcc itself. İ faced with this strange error. error was on aarch64.h and also, i edited header code a bit before compilation original header code: #define PROFILE_HOOK(LABEL) \ { …
sir mordred
  • 161
  • 1
  • 13
0
votes
1 answer

How can I determine the number of times a header is processed?

For the moment, my C codebases compile relatively quickly. However, I would like to utilise an informed approach to reducing the number of times a given header is re-processed. I guess that being able to see reference counts would help me to do so.…
Engineer
  • 8,529
  • 7
  • 65
  • 105
0
votes
0 answers

Cannot use cross compiler: gnu-unknown-linux-gnu-gcc in PXA270

I have a PXA270 board and I am trying to use gnu-unknown-linux-gnu-gcc to compile a file and put it in my board. I have done some steps as follow: 1.Unzip the file, SHELL> sudo tar zxvf arm-linux-toolchain-bin-4.0.2.tar.gz -C/ 2.Add one line to…
0
votes
1 answer

How to get the ./configure parameters after installation

Suppose I have compiled and installed some software package with: ./configure --with --some --parameters make make install Is there any way I can get the parameters I passed to ./configure? I still have the original directory where ./configure and…
user3452579
  • 413
  • 4
  • 14
0
votes
2 answers

OracleSolaris 11.2 -- toolchain to use

There is two options - SunStudio or gcc toolchain. What is the common practice to adhere when developing a driver -- make sure it builds with both compilers for 32-bit and 64-bit modes, or pick one compiler and stick to it? Thanks.
Mark
  • 6,052
  • 8
  • 61
  • 129
0
votes
3 answers

Embedded, Is it not possible to compile PIC controller using AVR/8051 compiler

How can I compile a different micro-controller on different micro-controller family IDE/compiler. For example, I have 8051 keil uVision IDE. I need to compile the code for PIC or AVR controller. Is it possible, by changing any internal settings in…
1 2 3
9
10