update README - dub based fetch and run instructions

This commit is contained in:
Vadim Lopatin 2017-10-12 11:11:28 +03:00
parent b412b9a037
commit 7069d5985f
2 changed files with 15 additions and 2 deletions

View File

@ -55,14 +55,27 @@ DlangUI project GitHub page: [https://github.com/buggins/dlangui](https://github
Mago debugger GitHub page: [https://github.com/rainers/mago](https://github.com/rainers/mago)
Try DlangIDE
============
Simple way to try it (you will need some D compiler and DUB utility):
dub fetch dlangide && dub run --build=release dlangide
On Linux and OSX you will need to install libSDL2, which is used as a default backend.
On Linux it's usually already installed. On OSX, use homebrew or some other package manager to install it.
brew install sdl2
Recent builds with dmd under windows have issues with crash in OPTILINK linker from DMD.
Workaround: add --arch=x86_mscoff or --arch=x86_64
Workaround: add --arch=x86_mscoff or --arch=x86_64 to DUB commandline
dub run --build=release --arch=x86_mscoff dlangide
dub run --build=release --arch=x86_64 dlangide
Both x86_mscoff and x86_64 have a dependency on linker from Visual Studio C++ compiler toolchain.
Build tools

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views"],
"dependencies": {
"dlangui": "==0.9.160",
"dlangui": "==0.9.162",
"dsymbol": "~>0.2.9",
"dcd": "~>0.9.1"
},