* [PATCH 2/3] Makefile: Fix some macro redefinition warnings
@ 2013-05-16 19:42 Ramsay Jones
2013-05-17 18:30 ` Christopher Li
0 siblings, 1 reply; 2+ messages in thread
From: Ramsay Jones @ 2013-05-16 19:42 UTC (permalink / raw)
To: Christopher Li; +Cc: Sparse Mailing-list
In particular, gcc complains as follows:
CC sparse-llvm.o
<command line>:1:1: warning: "__STDC_CONSTANT_MACROS" redefined
<command line>:1:1: warning: this is the location of the previous definition
<command line>:1:1: warning: "__STDC_FORMAT_MACROS" redefined
<command line>:1:1: warning: this is the location of the previous definition
<command line>:1:1: warning: "__STDC_LIMIT_MACROS" redefined
<command line>:1:1: warning: this is the location of the previous definition
The warnings are caused by the macros being defined twice on the
gcc command line. These command line -D macro definitions come
originally from the output of 'llvm-config --cflags', which is
recorded in the $(LLVM_CFLAGS) variable. This variable is then
included in the $(BASIC_CFLAGS) variable twice due to duplication
of the target-specific additions to the BASIC_CFLAGS, viz:
sparse-llvm_EXTRA_DEPS := sparse-llvm.o
sparse-llvm.o $(sparse-llvm_EXTRA_DEPS): BASIC_CFLAGS += $(LLVM_CFLAGS)
In order to suppress the warnings, we remove the duplication of
the sparse-llvm.o target in the above rule.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 35e3801..ba2ba85 100644
--- a/Makefile
+++ b/Makefile
@@ -90,7 +90,7 @@ LLVM_LIBS := $(shell llvm-config --libs)
PROGRAMS += $(LLVM_PROGS)
INST_PROGRAMS += sparse-llvm sparsec
sparse-llvm_EXTRA_DEPS := sparse-llvm.o
-sparse-llvm.o $(sparse-llvm_EXTRA_DEPS): BASIC_CFLAGS += $(LLVM_CFLAGS)
+$(sparse-llvm_EXTRA_DEPS): BASIC_CFLAGS += $(LLVM_CFLAGS)
sparse-llvm_EXTRA_OBJS := $(LLVM_LIBS)
endif
endif
--
1.8.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 2/3] Makefile: Fix some macro redefinition warnings
2013-05-16 19:42 [PATCH 2/3] Makefile: Fix some macro redefinition warnings Ramsay Jones
@ 2013-05-17 18:30 ` Christopher Li
0 siblings, 0 replies; 2+ messages in thread
From: Christopher Li @ 2013-05-17 18:30 UTC (permalink / raw)
To: Ramsay Jones; +Cc: Sparse Mailing-list
On 05/16/2013 12:42 PM, Ramsay Jones wrote:
>
> In particular, gcc complains as follows:
>
> CC sparse-llvm.o
> <command line>:1:1: warning: "__STDC_CONSTANT_MACROS" redefined
> <command line>:1:1: warning: this is the location of the previous definition
> <command line>:1:1: warning: "__STDC_FORMAT_MACROS" redefined
> <command line>:1:1: warning: this is the location of the previous definition
> <command line>:1:1: warning: "__STDC_LIMIT_MACROS" redefined
> <command line>:1:1: warning: this is the location of the previous definition
>
> The warnings are caused by the macros being defined twice on the
> gcc command line. These command line -D macro definitions come
> originally from the output of 'llvm-config --cflags', which is
> recorded in the $(LLVM_CFLAGS) variable. This variable is then
> included in the $(BASIC_CFLAGS) variable twice due to duplication
> of the target-specific additions to the BASIC_CFLAGS, viz:
>
> sparse-llvm_EXTRA_DEPS := sparse-llvm.o
> sparse-llvm.o $(sparse-llvm_EXTRA_DEPS): BASIC_CFLAGS += $(LLVM_CFLAGS)
>
> In order to suppress the warnings, we remove the duplication of
> the sparse-llvm.o target in the above rule.
>
> Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
I already commit a similar fix to remove the duplication.
I did not realize it can generate warning though.
Chris
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-17 18:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-16 19:42 [PATCH 2/3] Makefile: Fix some macro redefinition warnings Ramsay Jones
2013-05-17 18:30 ` Christopher Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).