smatch-devel Mailing List for smatch source matcher
Status: Pre-Alpha
Brought to you by:
error27
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: Jon B. <jbe...@tu...> - 2014-09-10 17:53:38
|
I just started to look at smatch and noticed a few small things that could be fixed, hope this helps. Jon Bernard (3): README-smatch: fix a typo Makefile: include smatch-generated files in clean Makefile: add missing quiet prefixes Makefile | 9 +++++---- README-smatch | 6 ++++-- 2 files changed, 9 insertions(+), 6 deletions(-) -- 1.9.1 |
From: Jon B. <jbe...@tu...> - 2014-09-10 17:53:33
|
Signed-off-by: Jon Bernard <jbe...@tu...> --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8969264..c39a03a 100644 --- a/Makefile +++ b/Makefile @@ -233,7 +233,8 @@ compat-cygwin.o: $(LIB_H) clean: clean-check rm -f *.[oa] .*.d *.so cwchash/*.o cwchash/.*.d cwchash/tester \ - $(PROGRAMS) $(SLIB_FILE) pre-process.h sparse.pc + $(PROGRAMS) $(SLIB_FILE) pre-process.h sparse.pc \ + check_list_local.h smatch dist: @if test "$(SPARSE_VERSION)" != "v$(VERSION)" ; then \ -- 1.9.1 |
From: Jon B. <jbe...@tu...> - 2014-09-10 17:53:32
|
Signed-off-by: Jon Bernard <jbe...@tu...> --- README-smatch | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README-smatch b/README-smatch index 5618387..80348d9 100644 --- a/README-smatch +++ b/README-smatch @@ -1,8 +1,10 @@ ***Compiling Smatch*** -make +Simply do this: -This compiles creates a binary called "smatch". + make + +This creates a binary called "smatch". ***Using Smatch*** -- 1.9.1 |
From: Jon B. <jbe...@tu...> - 2014-09-10 17:53:31
|
Signed-off-by: Jon Bernard <jbe...@tu...> --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c39a03a..2af4783 100644 --- a/Makefile +++ b/Makefile @@ -203,7 +203,7 @@ $(PROGRAMS): % : %.o $(QUIET_LINK)$(LD) -o $@ $^ $($@_EXTRA_OBJS) $(LDFLAGS) smatch: smatch.o $(SMATCH_FILES) $(SMATCH_CHECKS) $(LIBS) - $(CC) -o $@ $< $(SMATCH_FILES) $(SMATCH_CHECKS) $(LIBS) $(LDFLAGS) + $(QUIET_LINK)$(LD) -o $@ $< $(SMATCH_FILES) $(SMATCH_CHECKS) $(LIBS) $(LDFLAGS) $(LIB_FILE): $(LIB_OBJS) $(QUIET_AR)$(AR) rcs $@ $(LIB_OBJS) @@ -212,10 +212,10 @@ $(SLIB_FILE): $(LIB_OBJS) $(QUIET_LINK)$(CC) -Wl,-soname,$@ -shared -o $@ $(LIB_OBJS) $(LDFLAGS) check_list_local.h: - touch check_list_local.h + $(QUIET_GEN)touch check_list_local.h smatch.o: smatch.c $(LIB_H) smatch.h check_list.h check_list_local.h - $(CC) -c smatch.c -DSMATCHDATADIR='"$(SMATCHDATADIR)"' + $(QUIET_CC)$(CC) -c smatch.c -DSMATCHDATADIR='"$(SMATCHDATADIR)"' $(SMATCH_CHECKS): smatch.h smatch_slist.h smatch_extra.h avl.h DEP_FILES := $(wildcard .*.o.d) $(if $(DEP_FILES),$(eval include $(DEP_FILES))) -- 1.9.1 |
From: Paul L. <pl...@li...> - 2002-10-09 16:42:02
|
I was trying to run the dereference-test script from smatch and got an endless stream of errors like this: Use of uninitialized value in pattern match (m//) at smatch.pm line 444, <$input_file> line 1804. Use of uninitialized value in pattern match (m//) at smatch.pm line 463, <$input_file> line 1804. Use of uninitialized value in pattern match (m//) at smatch.pm line 464, <$input_file> line 1804. Use of uninitialized value in pattern match (m//) at smatch.pm line 463, <$input_file> line 1804. Also, any chance of getting this stuff checked into cvs for easier updates? Especially the scripts would be nice to have there. Nice utility by the way. I've been looking for something like this and I hope to see it get better over time. Thanks, Paul Larson |
From: Dan C. <mu...@ya...> - 2002-06-28 01:08:52
|
test __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com |