Top "Gnu" questions

This tag is for programming questions related to software and tools provided by the GNU ("GNU's Not Unix") project.

How do I tar a directory without retaining the directory structure?

I'm working on a backup script and want to tar up a file directory: tar czf ~/backup.tgz /home/username/…

linux unix gnu tar
GNU make yields "commands commence before first target" error

In my makefile, I would like to check for the existence of a library and give an informative error message. …

makefile gnu
Change stack size for a C++ application in Linux during compilation with GNU compiler

In OSX during C++ program compilation with g++ I use LD_FLAGS= -Wl,-stack_size,0x100000000 but in SUSE Linux …

gcc gnu
How do you use gcc to generate assembly code in Intel syntax?

The gcc -S option will generate assembly code in AT&T syntax, is there a way to generate files …

gcc x86 gnu intel assembly
how to set key font size in gnuplot?

How to set key(legend) font size in gnuplot? I read the gnuplot introduction file and find no related configuration …

gnu gnuplot
How to use GNU sed on Mac OS 10.10+, 'brew install --default-names' no longer supported

Under Mac OS 10.10.3, I installed gnu-sed by typing: brew install gnu-sed --default-names When I type it again, I get the …

macos bash sed homebrew gnu
Set font size of values numbers on the axis

How do I set the font size for the values on both the x and y-axis? I've looked around and …

gnuplot gnu
What does "#define _GNU_SOURCE" imply?

Today I had to use the basename() function, and the man 3 basename (here) gave me some strange message: Notes There …

c posix gnu
Linker error on a C project using Eclipse

I want create a project for the STM32F217IG microcontroller. Then I installed Eclipse and the GNU for ARM …

eclipse gcc linker arm gnu
Increase stack size in Linux with setrlimit

reading information about how to increase stack size for a c++ application compiled with gnu, at compilation time, I understood …

stack gnu