kunftep
kunftep
I don't know what I'm doing :) Do I need to install libsfml (and libcsfml) beforehand? I did [re]install libsfml-* and tried again using HEAD, i.e. without `-b 2.1 --depth...
> Note: The following builds the 2.1 version specifically. If you want to build git HEAD, just use git clone https://github.com/Jebbs/DSFMLC.git That's what I used and it built and installed,...
Thank you! I could build dsfml now with the instructions from `Linux and GDC`, but using `git clone https://github.com/jebbs/dsfml` instead. But I don't know what to use for `dmd ......
I tried without `-L-LDSFMLC\lib\`: `dmd test.d -Idsfml/src/ -L-Ldsfml/lib/ -L-ldsfml-graphics -L-ldsfml-window -L-ldsfml-system -L-lsfml-graphics -L-lsfml-window -L-lsfml-system` ``` ... /usr/bin/ld: dsfml/lib//libdsfml-system.a(ErrStream.cpp.o): undefined reference to symbol '_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4' //usr/lib/x86_64-linux-gnu/libstdc++.so.6: error adding symbols: DSO missing from...
ok, different error now, about `lockingTextWriter` (my dmd version is `DMD64 D Compiler v2.085.1`): ``` [user]~/Downloads/d/dsfml/DSFML20190429>dmd test.d -Idsfml/src -L-Ldsfml/lib -L-ldsfml-graphics -L-ldsfml-window -L-ldsfml-system -L-lsfml-graphics -L-lsfml-window -L-lsfml-system -L-lstdc++ dsfml/src/dsfml/window/event.d(354): Deprecation: struct `dsfml.window.event.Event.MouseWheelEvent`...
Could my dmd.conf be messing something up (I think it's unchanged/original)? ``` [user]~/Downloads/d/dsfml/DSFML20190429>cat /etc/dmd.conf ; ; dmd.conf file for dmd ; ; dmd will look for dmd.conf in the following...
phobos seems to be installed, and I can compile other d code, even using `std.stdio.File.lockingTextWriter`: ``` [user]~/Downloads/d/dsfml/DSFML20190429>cat test_phobos.d void main() { import std.stdio; File f = File("test_phobos.d"); writeln(f); auto ltw...