From 7069d5985f08f1431b35f53779d02e3c1f0a8816 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Thu, 12 Oct 2017 11:11:28 +0300 Subject: [PATCH] update README - dub based fetch and run instructions --- README.md | 15 ++++++++++++++- dub.json | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e6dcef..c176a16 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/dub.json b/dub.json index 336ea93..434cd45 100644 --- a/dub.json +++ b/dub.json @@ -12,7 +12,7 @@ "stringImportPaths": ["views"], "dependencies": { - "dlangui": "==0.9.160", + "dlangui": "==0.9.162", "dsymbol": "~>0.2.9", "dcd": "~>0.9.1" },