summaryrefslogtreecommitdiffstats
path: root/COMPILING
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2013-12-21 17:23:15 +0100
committerAlexander Harkness <bearbin@gmail.com>2013-12-21 17:23:15 +0100
commit0d14229ffda2cf8e41ec0afc28bc82d4830c8b44 (patch)
tree66c4879791df24b2dd3efaea5fe2583864d71791 /COMPILING
parentUpdate COMPILING (diff)
downloadcuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.tar
cuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.tar.gz
cuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.tar.bz2
cuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.tar.lz
cuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.tar.xz
cuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.tar.zst
cuberite-0d14229ffda2cf8e41ec0afc28bc82d4830c8b44.zip
Diffstat (limited to 'COMPILING')
-rw-r--r--COMPILING27
1 files changed, 0 insertions, 27 deletions
diff --git a/COMPILING b/COMPILING
deleted file mode 100644
index e10acee98..000000000
--- a/COMPILING
+++ /dev/null
@@ -1,27 +0,0 @@
-COMPILING
-=========
-
-To compile MCServer on *nix, you need CMake and make, as well as a C compiler, C++ compiler and linker.
-
-Release Mode
-------------
-
-Release mode is preferred for almost all cases, it has much better speed and less console spam. However, if you are developing MCServer actively, debug mode might be better.
-
- cmake . -DCMAKE_BUILD_TYPE=RELEASE && make
-
-Debug Mode
-----------
-
-Debug mode is useful if you want more debugging information about MCServer as it's running or if you want to use a debugger like GDB to debug issues and crashes.
-
- cmake . -DCMAKE_BUILD_TYPE=DEBUG && make
-
-32 Bit Mode
------------
-
-This is useful if you want to compile MCServer to use on another 32-bit machine. It can be used with debug or release mode. To use 32 bit mode, simply add:
-
- -DFORCE_32=1
-
-to your cmake command and 32 bit will be forced.