dsisnero
dsisnero
I think if XDG variables are set, that should be the default. Otherwise, there is no way to change it. If XDG variables aren't set, revert to windows spec and...
What is the status on this? How can I change my config in runtime directories on windows without using a command line switch?
As long as the option is there to change it without a command line switch and so it is not hardcoded. Just pick APPDATA or HOME/.config as fallback but give...
another try with visual studio developer prompt `********************************************************************** ** Visual Studio 2022 Developer Command Prompt v17.7.5 ** Copyright (c) 2022 Microsoft Corporation ********************************************************************** F:\windows\visual_studio>cd f:\programming\source\repos\git\crystal_repos\crystalline f:\programming\source\repos\git\crystal_repos\crystalline>shards build --release Dependencies are...
so I built llvm-17.0.6 and set LLVM_CONFIG to the file. It builds the library but errors on the linking because since https://github.com/crystal-lang/crystal/issues/13946, llvm_ext.cc is no longer built so no llvm_ext.obj...
Is it possible to adopt some of the ideas from rust-analyzer - the extracted https://github.com/salsa-rs/salsa . It is what they use for on demand , incremental updates
still doesn't work on windows with mv to a different disk drive. ``` require "file_utils" tempfile = File.tempfile("foo") do |file| file.print("Hello from crystal") end dest = "e:/temp/hello_from_crytal.txt" path = Path.new(dest)...
in Ruby Enumerable module find with alias detect is for singular return and find_all with alias select is used for Array doc.find{| doc| doc.id} doc.select{|d| d.selector('p')}
doc.find{|d| doc.id == '#term'} doc.select{|d| d.selector == 'p'} doc.select_with_query('p') doc.find_with_query('p')
Still getting an error. Not sure why ------ ``` f:\programming\source\repos\git\dsisnero\crystal_examples\pegasus>git pull Already up to date. ``` ``` f:\programming\source\repos\git\dsisnero\crystal_examples\pegasus>shards build --release Dependencies are satisfied Building: pegasus Building: pegasus-dot Building: pegasus-sim Building:...