The -show-defaults flag instructs the compiler to print out the defaults used related to the standard, optimization, and code generation. When this flag is specified, the compiler will just print the defaults and quit. No compilation is performed.
$ gmqcc -show-defaults-
Selects the standard dialect |
Macro | @@ -116,7 +122,7 @@Specifies the current selected stanadards major version number. |
GMQCC strives hard for compatability with standard dialects, but not all features of those standards might be implemented. The unsupported features @@ -136,8 +142,8 @@
-Option | @@ -172,7 +178,7 @@Enables perl evalutaion/logic |
Option | @@ -251,7 +257,7 @@ Individual warnings may be disabled with -Wno<warning>
Option | @@ -280,6 +286,83 @@Lists all code generation options |
+ To compile GMQCC on BSD/NIX the following things are + required: + +
$ git clone git://github.com/graphitemaster/gmqcc.git +$ cd gmqcc ++ + The Makefile contains a few rules, depending on what you + want to compile, the following rules are: + +
Rule | +What it does | +
gmqcc | +Builds the gmqcc compiler | +
qcvm | +Builds a standable QuakeC VM | +
testsuite | +Builds the testsuite for GMQCC | +
all | +Builds gmqcc, qcvm, and testsuite | +
install | +Installs gmqcc to /usr/local/ | +
check | +Runs the testsuite to verify correctness | +
+ To compile GMQCC on windows the following things are + required: + +
$ git clone git://github.com/graphitemaster/gmqcc.git+ Included is a VS project file. + + +
+ GMQCC comes with a complete testsuite system for verifying semantics + and syntatics, TODO explain more and how to use it, write your own + tests etc.... +
+Having trouble with GMQCC? Join our IRC channel at #kf-engine on irc.freenode.net or contact Us diff --git a/stylesheets/styles.css b/stylesheets/styles.css index 0138100..63e5dac 100644 --- a/stylesheets/styles.css +++ b/stylesheets/styles.css @@ -53,16 +53,20 @@ p, ul, ol, table, dl { margin:0 0 22px; } +h2.id { + color: red; +}; + h1, h2, h3 { - font-family: Arvo, Monaco, serif; - line-height:1.3; - font-weight: normal; + font-family: Arvo, Monaco, serif; + line-height:1.3; + font-weight: normal; } h1,h2, h3 { - display: block; - border-bottom: 1px solid #ccc; - padding-bottom: 5px; + display: block; + border-bottom: 1px solid #ccc; + padding-bottom: 5px; } h1 { @@ -423,3 +427,29 @@ footer { color:#444; } } + +/* used for wiki stuff (mainly docs so far) */ +ul.wiki { + list-style-type: none; + list-style: none; + margin: 0; + padding-top: 30px; +} +li.wiki { + margin: 1; + padding-top: 0px; + padding-left: 0px; + padding-bottom: 20px; + border: 0; + font: inherit; + list-style: none; + vertical-align: baseline; + background-color: #DDDDDD; +} +a.wiki { + display: block; + width: 100% - 25px; + padding-left: 25px; + padding-top: 25px; + background-color: #DDDDDD; +}