comparison gen/cl_options.cpp @ 1067:7ce8355fbcc6

Improved template emission control for singleobj building.
author Christian Kamm <kamm incasoftware de>
date Sun, 08 Mar 2009 16:21:56 +0100
parents d1ec9ff0e9ba
children e40c65bd8c5d
comparison
equal deleted inserted replaced
1066:186d44690036 1067:7ce8355fbcc6
324 cl::desc("Disables asserts, invariants, contracts and boundscheck"), 324 cl::desc("Disables asserts, invariants, contracts and boundscheck"),
325 cl::location(ReleaseSetter), 325 cl::location(ReleaseSetter),
326 cl::ValueDisallowed); 326 cl::ValueDisallowed);
327 327
328 328
329 cl::opt<bool> singleObj("singleobj",
330 cl::desc("Create only a single output object file"),
331 cl::ZeroOrMore);
332
333
329 static cl::extrahelp footer("\n" 334 static cl::extrahelp footer("\n"
330 "-d-debug can also be specified without options, in which case it enables all\n" 335 "-d-debug can also be specified without options, in which case it enables all\n"
331 "debug checks (i.e. (asserts, boundchecks, contracts and invariants) as well\n" 336 "debug checks (i.e. (asserts, boundchecks, contracts and invariants) as well\n"
332 "as acting as -d-debug=1\n\n" 337 "as acting as -d-debug=1\n\n"
333 "Options marked with (*) also have a -disable-FOO variant with inverted\n" 338 "Options marked with (*) also have a -disable-FOO variant with inverted\n"