]> andersk Git - splint.git/blame - doc/faq.txt
Updated libary version number.
[splint.git] / doc / faq.txt
CommitLineData
7c080ead 1What is the difference between Splint and LCLint?
2
3Before 2002, Splint was known as LCLint. Splint 3.0 is the successor to LCLint 2.5.
4
5LCLint was originally named for LCL, the Larch C Interface Language and lint, a well-known C program checking tool. Because our tool has diverged from LCL, and our focus now is on secure programming, it was renamed Splint. Splint's name has (at least) three interpretations: specifications lint, secure programming lint, and first aid for programmers. Its also easier to pronounce than LCLint.
6
7What is the Splint logo?
8
9Thomas Jefferson's Serpentine Walls at the University of Virginia. The walls are one brick thick, but because of their design are both strong and aesthetic. Like a secure program, secure walls depend on sturdy bricks, solid construction, and elegant and principled design.
10
11Can I include Splint in my software distribution?
12
13Yes. Splint is licensed under the GNU General Public License. You may redistributed it as you wish so long as credits and pointers to www.splint.org are not changed or removed. Splint may be included in commercial distributions, and is included in several Linux and freeware CDs. If you redistribute Splint, please let us know by sending a message to splint@cs.virginia.edu.
18848fb7 14
15Can we use your software in our company? (We are not a GNU organization.)
16
17Yes, splint is GPL-licensed. Anyone may use it. If you want to
18redistribute it, check the license for details or contact us.
19
7c080ead 20Does Splint handle C++?
21
22No. Splint handles ISO C99 (and some gcc extensions if +gnuextensions is used). We don't have the resources (or the research justification) to build a C++ front end, but if you are interested in building a C++ front end the source code is available, and I will certainly be willing to help.
23
24I downloaded the Splint tgz file but can't figure out how to extract it. There is no 'z' option on the tar on my system.
18848fb7 25
26Check to see if there is GNU tar on your system, it is usually invoked by the command gtar or gnutar. GNU tar supports the -z option.
27
28You can also unzip the file then untar it. Do: gunzip filename.tar.gz to unzip then tar -xvf filename.tar
29
30I want to use Splint in win2000. How do I do that?
31
32See www.splint.org for information on Splint.
33http://www.splint.org/win32.html for Windows instructions.
34
7c080ead 35I have installed Splint for Windows 2000. Where should I put the ".splintrc" file?
18848fb7 36
37 For Win32, Splint looks for splint.rc instead of .splintrc due to the DOS
38filename problems. It will look first in the current directory, then in
39your home directory. See the Splint manual for more information.
40
7c080ead 41Which compilers does Splint support?
18848fb7 42
43It is independent from your compiler.
44
18848fb7 45How does Splint handle const?
46
47Splint doesn't interpret const (at all). See the manual section on
48modifies checking (http://www.splint.org/manual/html/sec7.html).
49
50Why do I get a warning when multiplying different integer types? The C standard says this is ok. Why is this wrong?
51
52There are lots of things that the C spec allows and defines clearly, that
53Splint will provide warnings for. It's not a question of it being "wrong",
54it's a matter of it being likely to reveal a programming mistake.
55
56The C standard says that what I'm doing is okay. Why does Splint give me a warning?
57
58See the previous question.
59
60Splint complains if I ignore the return value of scanf but not printf?
61
62This is just a strategic decision --- we view ignoring the result of a
63scanf to be more likely to reveal a problem with the code than ignoring
64the result of a printf, even though strict programmers will want to check
65printf also.
66
67If you want stricter checking use the flags +ansistrictlib, +posixstrictlib, +unixstrictlib to select the strict versions of these libraries.
68
69I develop code on an embedded system with a compiler that uses nonstandard key words and data types. I would like run Splint on my code but these nonstandard keywords cause parse errors. What should I do?
70
71You can often use -D to solve this problem.
72
73If you just want to ignore a keyword, you can add
74
75-Dnonstandardkeyword=
76
77to make the preprocessor eliminate the keyword, where nonstandardkeyword is the name of the keyword. Similarly, you can use
78-Dspecialtype=int
79to make a custom type parse as an int.
80
81How can I get Splint to recognize directory trees and local source include directories? I've tried putting them in my path but it doesn't seem to look beyond the current directory.
82
83You can use -I to set the include path like you would with a compiler.
84
7c080ead 85I heard that we will get lot of parse errors when we run this tool first time. Hence we need to modify source code. Is it correct ?
18848fb7 86
7c080ead 87Usually not, but Splint doesn't support all C99 extensions.
18848fb7 88
89I heard that Splint can generate some spurious errors ( not genuine errors). Is it correct ?
90
91Yes, please see www.splint.org for details.
92
93When I build Splint I get the following error:
94
95 Checking for...
96 Checking manual...
97cmx > / Checking tests2.2...
98 Checking tests2.4...
99 Checking tests2.5...
100 Checking db1...
101 0a1,2
102 > /cmx/tools/make -e clean
103 > /cmx/tools/make -e check
104 *** FAIL ***
105 Checking db2...
106 0a1,/tools/make -e clean
107 > /cmx/tools/make -e check
108 *** FAIL ***
109 Checking db3...
110
111Should I be worried?
112
113Those diffs look harmless. It is likely that your make is set up slightly differently than ours.
114
7c080ead 115I just installed Splint on a new machine. I get a bunch of errors during building when the test suite is run. When I look through the results, it seems like Splint is not reporting any errors in the code it analyzes. What is going on?
18848fb7 116
117One possibility is that the installation directory where the test suite is
118running is on the system path (hence, splint won't report errors if
119-sysdirerrors is set, as it is by default). Try adding +sysdirerrors to
120the command line for the test suite to see if that is the problem, or installing Splint in a different directory not in the system path.
121
122
123I get parse errors when I try to run Splint on code like #define MACROdebug(...) blahblah . Can I use variadic macros in Splint?
124
125Sorry, Splint doesn't yet support variadic macros. We hope to fix this in a future release.
126
7c080ead 127I use realloc in my code. How can I get Splint in check this code more effectively?
18848fb7 128
129realloc has complicated semantics that make it difficult to use correctly. Make sure that you understand realloc and that you need to use it.
130
7c080ead 131If you decide to use realloc, we recommend that you wrapper it. The document Using Wrapper Functions explains how to do this. That document is included in the Splint documentation and is also available at:
18848fb7 132HTTP://INSERT_A_VALID_URL_WHEN_THE_document_is_ready.
133
134I think I've found a bug in Splint what should I do?
135
136See http://www.splint.org/bugs.html for a list of known bugs and instructions on reporting bugs.
137
138Splint tells me that there is a bug and I should report it. What information should I send?
139
7c080ead 140Ideally we would like enough code to reproduce the problem. Small snipits of code which trigger the bug are the best but more code is also acceptable.
18848fb7 141
7c080ead 142If we're not able to reproduce the problem, then we are unlikely to be able to patch Splint. However, we would still appreciate hearing about the bug and may be able to at least to offer you advice on working around the problem.
18848fb7 143
144My question isn't answered here. How can I get more information about Splint?
145
146First check the Splint manual and the mailing list archives.
147
148The Splint manual is available at: http://www.splint.org/manual/
149The mailing list archives are at:
150http://www.mail-archive.com/lclint-interest%40virginia.edu/
151
7c080ead 152If you're still unable to find the information to answer your question, you can try posting the question to the splint-discuss mailing list (see http://www.splint.org/lists.html)
18848fb7 153
154You can also email us at splint@splint.org.
This page took 0.068431 seconds and 5 git commands to generate.