Kirill A. Korinsky
Kirill A. Korinsky
@WojciechMazur hey, any news on this one? Is it possible to expect on the next release?
@WojciechMazur thanks. If you need any help feel free to ask. Looks like I'll have a bit time soon ;)
@markehammons keep in mind that just implementing threads isn't enough. You need to introduce it in GC. JFI: I'm working (really hard) to introduce a support of real multithreading that...
@sjrd it required to change `sbt` file. Here I need a way to specify which `clang` I should use. @WojciechMazur at machine which I'm using to build, to be hones,...
@sjrd about your way. Let assume that I have `/opt/local/bin/no_default_gcc/clang` which is simple bash script which exits with code `1`. `/opt/local/bin/no_default_gcc` is the first path in `PATH`. I've added to...
@WojciechMazur FYI the old way allows to adjust clang or clang++ path via `CLANG_PATH` and `CLANGPP_PATH`, maybe recover it?
@WojciechMazur my point that `CLANG_PATH`, `CLANGPP_PATH` or similar variables is standard de facto. And scala native before your changes supported it. I just would like to recover this environment some...
@sjrd anyway, `env CLANG_PATH=/usr/bin/clang CLANGPP_PATH=/usr/bin/clang++ sbt cliNative/nativeLink` works as expected. => I just would like to save this way for the next releases.
@WojciechMazur I don't know GraalVM code base but it seems for me that it can use `CLANG` and `CLANGXX`. But I might be mistaken.
@ekrich this is still different behaviour with `0.4.0` which allows to define `CLANG_PATH` and `CLANGPP_PATH`. Thus, if you haven't define `LLVM_BIN` and the first `clang` in `PATH` exits with code...