comparison dmd/mars.h @ 550:cbe08531430f

Removed unimplemented switches.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 26 Aug 2008 21:02:25 +0200
parents b0005772a88e
children 68d7df3f9b05 aaba4f7c6d8a
comparison
equal deleted inserted replaced
549:d3baf2e52c4f 550:cbe08531430f
56 // Put command line switches in here 56 // Put command line switches in here
57 struct Param 57 struct Param
58 { 58 {
59 char obj; // write object file 59 char obj; // write object file
60 char link; // perform link 60 char link; // perform link
61 char trace; // insert profiling hooks
62 char quiet; // suppress non-error messages 61 char quiet; // suppress non-error messages
63 char verbose; // verbose compile 62 char verbose; // verbose compile
64 char symdebug; // insert debug symbolic information 63 char symdebug; // insert debug symbolic information
65 char optimize; // run optimizer 64 char optimize; // run optimizer
66 char optimizeLevel; // optimization level 65 char optimizeLevel; // optimization level
79 char useUnitTests; // generate unittest code 78 char useUnitTests; // generate unittest code
80 char useInline; // inline expand functions 79 char useInline; // inline expand functions
81 char preservePaths; // !=0 means don't strip path from source file 80 char preservePaths; // !=0 means don't strip path from source file
82 char warnings; // enable warnings 81 char warnings; // enable warnings
83 char pic; // generate position-independent-code for shared libs 82 char pic; // generate position-independent-code for shared libs
84 char cov; // generate code coverage data
85 char nofloat; // code should not pull in floating point support
86 char noruntime; // code is not allowed to make implicit calls to the runtime 83 char noruntime; // code is not allowed to make implicit calls to the runtime
87 char novalidate;// no bitcode validation 84 char novalidate;// no bitcode validation
88 char Dversion; // D version number 85 char Dversion; // D version number
89 char ignoreUnsupportedPragmas; // rather than error on them 86 char ignoreUnsupportedPragmas; // rather than error on them
90 87