summary refs log tree commit diff stats
path: root/doc/koch.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/koch.rst')
-rw-r--r--doc/koch.rst40
1 files changed, 0 insertions, 40 deletions
diff --git a/doc/koch.rst b/doc/koch.rst
index a58d386ea..5fa617973 100644
--- a/doc/koch.rst
+++ b/doc/koch.rst
@@ -35,9 +35,6 @@ options:
   By default a debug version is created, passing this option will
   force a release build, which is much faster and should be preferred
   unless you are debugging the compiler.
--d:tinyc
-  Include the `Tiny C <http://bellard.org/tcc/>`_ backend. This
-  option is not supported on Windows.
 -d:useGnuReadline
   Includes the `rdstdin module <rdstdin.html>`_ for `interactive
   mode <nimc.html#nim-interactive-mode>`_ (aka ``nim i``).
@@ -45,11 +42,6 @@ options:
   incorporate the GNU readline library.
 -d:nativeStacktrace
   Use native stack traces (only for Mac OS X or Linux).
--d:noCaas
-  Builds Nim without compiler as a service (CAAS) support. CAAS
-  support is required for functionality like Nim's `idetool
-  <idetools.html>`_ command used to integrate the compiler with
-  `external IDEs <https://github.com/Araq/Nim/wiki/Editor-Support>`_.
 -d:avoidTimeMachine
   Only for Mac OS X, activating this switch will force excluding
   the generated ``nimcache`` directories from Time Machine backups.
@@ -65,12 +57,6 @@ options:
   directories and check their backup exclusion bit::
 
     $ find . -type d -name nimcache -exec tmutil isexcluded \{\} \;
--d:useFFI
-  Nim code can use the `foreign function interface (FFI)
-  <manual.html#foreign-function-interface>`_ at runtime, but macros
-  are limited to pure Nim code at compilation time.  Enabling
-  this switch will allow macros to execute non-nim code at
-  compilation time (eg. open a file and write to it).
 --gc:refc|v2|markAndSweep|boehm|go|none
   Selects which garbage collection strategy to use for the compiler
   and generated code. See the `Nim's Garbage Collector <gc.html>`_
@@ -81,31 +67,12 @@ compiler in the ``bin`` directory. You can add Nim's ``bin`` directory to
 your ``$PATH`` or use the `install command`_ to place it where it will be
 found.
 
-clean command
--------------
-
-The `clean`:idx: command removes all generated files.
-
 csource command
 ---------------
 
 The `csource`:idx: command builds the C sources for installation. It accepts
 the same options as you would pass to the `boot command`_.
 
-inno command
-------------
-
-The `inno`:idx: command builds the `Inno Setup installer for Windows
-<http://www.jrsoftware.org/isinfo.php>`_.
-
-install command
----------------
-
-The `install`:idx: command installs Nim to the specified directory, which
-is required as a parameter. For example, on Unix platforms you could run::
-
-  $ ./koch install /usr/local/bin
-
 temp command
 ------------
 
@@ -123,13 +90,6 @@ driver of Nim's test suite. You can pass options to the ``test`` command,
 they will be forwarded to the tester. See its source code for available
 options.
 
-update command
---------------
-
-The `update`:idx: command updates nim to the latest version from github.
-For this command to work you need to have compiled ``koch`` itself with the
-``-d:withUpdate`` switch.
-
 web command
 -----------
 
n197'>197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454