I have recently made a cp clone (for University) and I happened to discover something I had never got the chance to.

This applies at least to GCC compiling a C source.

I did the main development of this specific C program in a Mac OS X (10.6.4), builds with Apple's /usr/bin/gcc --version

i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5664)
Copyright (C) 2007 Free Software Foundation, Inc.

However, I ran the tests in an Arch Linux virtual machine within the Mac, with the latest gcc (no additions, no customizations, no mods like Apple's)

gcc (GCC) 4.5.1
Copyright (C) 2010 Free Software Foundation, Inc.

And we had to build it in the class in the Ubuntu 10.04.1 LTS that we have there.

My Makefile was something like:

CC=gcc
#CFLAGS=-O0 -g -Wall
CFLAGS=-O3 -Wall -finline-functions
EXE=copy

compile:
    $(CC) $(CFLAGS) -o $(EXE) main.c

So, I was always running (in every OS) gcc with -Wall enabled. Mac and Arch never showed any warning.

Ubuntu printed two warnings, with and without -Wall

do_copy.c: In function 'do_copy_file2file':
do_copy.c:27: warning: ignoring return value of 'realpath', declared with attribute warn_unused_result
do_copy.c: In function 'do_copy_symlink2file':
do_copy.c:117: warning: ignoring return value of 'symlink', declared with attribute warn_unused_result

Ubuntu's GCC version is the default for the distribution: gcc (Ubuntu 4.4.3-ubuntu5) 4.4.3

Why does that happen?

Why don't I see any warnings in the other two OSs and in Ubuntu I do?

link|improve this question

25% accept rate
There's a clue in the warning messages. – Paul R Nov 19 '10 at 12:20
@Paul: The OP isn't asking what the warnings mean, but why they are appearing in one particular environment. Those warnings are very paranoid, and normally don't appear, even with -Wall. – Marcelo Cantos Nov 19 '10 at 12:44
1  
@Marcelo: yes, and as I said, the reason is readily apparent from the warning messages - the declarations of realpath and symlink in /usr/include/stdlib.h and /usr/include/unistd.h have the warn_unused_result attribute in newer distributions. – Paul R Nov 19 '10 at 14:33
@Paul does "newer distributions" mean just Ubuntu? Because Arch has a more current implementation of gcc. Yet does not say anything. – ssice Nov 19 '10 at 22:29
@ssice: I don't know - I would have thought that most current distros wold have this now - take a look at some of the headers in /usr/include. – Paul R Nov 19 '10 at 22:56
show 1 more comment
feedback

1 Answer

Ubuntu enforces some CFLAGS as you can see here

link|improve this answer
I tried to put all the flags in the wiki (at once) and neither Arch nor Mac complained about anything. – ssice Dec 1 '10 at 11:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.