On Friday, 18 October 2019 at 20:09:47 UTC, Aldo wrote:
Try to move that libnuklear.so or rename it to nuklear.so. I checked bindbc code and saw :

    version(Windows) {
        const(char)[][1] libNames = ["nuklear.dll"];
    }
    else version(OSX) {
        const(char)[][1] libNames = ["nuklear.dylib"];
    }
    else version(Posix) {
        const(char)[][2] libNames = [
            "nuklear.so",
            "/usr/local/lib/nuklear.so",
        ];
    }

Great! progress! ... It shown loading splash screen and moving loading bar, when it reach the end, it segfault

prokop@prokop-Lenovo-ideapad-Y700-15ISK:~/git_SW/_Dlang/dagon-demo$ ./dagondemo
Loading scene "TestScene"
Segmentation fault (core dumped)

possibly it it connected with the error I saw during compilation:
Copying files for dagon...
Invalid source/import path: /home/prokop/git_SW/_Dlang/dagon-demo/shaders

Reply via email to