]> git.xonotic.org Git - xonotic/xonotic.wiki.git/blobdiff - Repository_Access.md
Update ./all compile flags to match current defaults
[xonotic/xonotic.wiki.git] / Repository_Access.md
index 2cb73fecf59e9ae75d4e27fe60f96cf6cc8d3475..bee710c42092e4e6d6ee7e78754d408a6444ee5e 100644 (file)
@@ -64,14 +64,14 @@ To begin downloading:
 
 Now the game can be compiled and run with the following commands:
 
-    ./all compile -r
+    ./all compile
     ./all run
 
-**Note:** if you encounter en error similar to darkplaces#111, try `./all clean && ./all compile -r -0`.
+**Note:** if you encounter en error similar to darkplaces#111, try `./all clean && ./all compile -0`.
 
-You can use `./all compile -d` to create a slower unoptimized build with debug symbols but usually you want `-r` (which is also the new default).
+You can use `./all compile -d` to create a slower unoptimized build with debug symbols.
 
-The `./all run` or `./all compile` line can be followed by `dedicated` to build or run the executable for server hosting. E.g. `./all compile -r dedicated`.
+The `./all run` or `./all compile` line can be followed by `dedicated` to build or run the executable for server hosting. E.g. `./all compile dedicated`.
 
 The `run` command can also be followed by standard DarkPlaces commandline arguments:
 
@@ -82,13 +82,13 @@ To update your Git clone:
     cd xonotic
     ./all checkout  # switch to main branch on all repos (usually master)
     ./all update  # pull and prune
-    ./all compile -r  # recompile what changed
+    ./all compile # recompile what changed
 
 **Note:** If you intend to play on public servers, you should probably also enable the nexcompat repo to download additional textures that are used on some older unofficial maps. Use `touch data/xonotic-nexcompat.pk3dir.yes` and `./all update`. For mappers: these textures should NOT be used on new maps.
 
 ***
 
-If you run into issues with the latest version you can easily revert to an older one. Since most bugs are caused by the game code rather that the engine, you just need to downgrade that repository. Inside the main xonotic repository, use `cd data/xonotic-data.pk3dir` and then `git checkout <some older commit>`. After that go back `cd -` and `./all compile` (with the optional `-r` flag).
+If you run into issues with the latest version you can easily revert to an older one. Since most bugs are caused by the game code rather that the engine, you just need to downgrade that repository. Inside the main xonotic repository, use `cd data/xonotic-data.pk3dir` and then `git checkout <some older commit>`. After that go back `cd -` and `./all compile`.
 
 Contributing and Getting Write Access
 -------------------------------------