Merge pull request #158 from mczero80/master

Updated gcc command in README.md, because it fails on Ubuntu 14.04
master
Michael Fogleman 2015-06-10 13:12:27 -04:00
commit 5e5351c749
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ You can run your own server or connect to mine. The server is written in Python
but requires a compiled DLL so it can perform the terrain generation just like
the client.
gcc -std=c99 -O3 -shared -o world -I src -I deps/noise deps/noise/noise.c src/world.c
gcc -std=c99 -O3 -fPIC -shared -o world -I src -I deps/noise deps/noise/noise.c src/world.c
python server.py [HOST [PORT]]
### Controls