-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[superseded] niminst: make linenoise.h optional #13413
[superseded] niminst: make linenoise.h optional #13413
Conversation
* fix nightlies linenoise regression * fix other installers
…ce -d:release -d:nimBundleNimExtra`
adding a flag to niminst (eg
and made a reference to that in ./koch --help |
@timotheecour I can confirm that this now works again as expected. |
With this PR nightlies will be broken once again. Can we please revert this linenoise patch and make |
@timotheecour could you please back out your modifications to niminst. Your last changes fix my initial issue but I'm onside with @Araq that this should be a separate tool. Currently we have the following in: Line 695 in 3dad130
which basically means if you want to use nim's compiler internals and export that to standalone C code you need to copy around a header for a line editing library that is very unlikely to be needed. Exporting C code like this is one of nim's killer features in my opinion. Until an actual REPL that handles the whole language and FFI exists (which would be awesome) I don't see why this needs to be in the compiler directory and definitely not in niminst .
|
all right, see #13478 ; if it gets merged we can close this |
Since it has |
refs: 2b368bc#commitcomment-37273026
/cc @drjdn does this work for you?