projects
/
cdsspec-compiler.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bedc2b9
)
Makefile/malloc: don't warn for self-assign
author
Brian Norris
<banorris@uci.edu>
Mon, 29 Oct 2012 18:23:26 +0000
(11:23 -0700)
committer
Brian Norris
<banorris@uci.edu>
Mon, 29 Oct 2012 18:23:26 +0000
(11:23 -0700)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index 523709f011209b8d1e52033fa5b2dd1971326a1c..657bad6559ed259db5ec0f28cb966a4293b02de8 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-39,7
+39,7
@@
$(LIB_SO): $(OBJECTS)
$(CXX) $(SHARED) -o $(LIB_SO) $(OBJECTS) $(LDFLAGS)
malloc.o: malloc.c
- $(CC) -fPIC -c malloc.c -DMSPACES -DONLY_MSPACES -DHAVE_MMAP=0 $(CPPFLAGS) -Wno-unused-variable
+ $(CC) -fPIC -c malloc.c -DMSPACES -DONLY_MSPACES -DHAVE_MMAP=0 $(CPPFLAGS) -Wno-unused-variable
-Wno-self-assign
%.o: %.cc
$(CXX) -fPIC -c $< $(CPPFLAGS)