Ihar Hancharenka

Results 9 comments of Ihar Hancharenka

Could anyone suggest the latest version of working ghc/stack-lts to be able to build taffybar with?

jline 3 has JNI/JNA bindings to appropriate windows-functionality (https://github.com/jline/jline3/blob/master/src/main/java/org/jline/terminal/impl/jna/win/JnaWinSysTerminal.java). Is it (jline-3) stable enough to start using it for Ammonite ???

Thank you, Tim. BTW - are there any plans/enhancement for upgrading Ammonite to JLine3 ???

BTW, has anybody looked at jansi or lanterna libs? It has windows support. Moreover, it has bindings to Win API like GetConsoleScreenBufferInfo, which can be used as a replacement to...

You are right. BTW, are there any workarounds, hacks and so on to deal with my case?

Thank you. The groovy script works (and worked fine for me long time ago): ``` model { toolChains { gcc(Gcc) { eachPlatform { cCompiler.executable 'compat-g++' cppCompiler.executable 'compat-g++' linker.executable 'compat-g++' }...

Thank you. Will wait.

BTW, I found a way to reference native (cpp) artifacts from non-cpp projects (base and probably java, java-library) ``` val someCfg by configurations.creating { attributes { attribute(CppBinary.OPTIMIZED_ATTRIBUTE, false) attribute(Usage.USAGE_ATTRIBUTE, namedAttribute(Usage.NATIVE_RUNTIME))...