-
Notifications
You must be signed in to change notification settings - Fork 648
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
Editline can't work under MSVC #786
Comments
I believe the readline/editline libraries only worked in *nix-type OSs. And that continues to be the case. Is it causing a compiler or runtime error? Or is it simply not working? If it is a compiler or runtime error, it will need to be fixed quickly. If the functionality is simply not there, we will have to wait until editline code for Windows is developed and implemented. |
It doesn't compile due to use of |
I believe one problem is bitshares-fc's CMakeLists.txt line 117. Removing "COMPILE_DEFINITIONS" allowed cmake to run. Still testing. |
You can consider using wineditline instead of editline in windows, but you have to modify a lot of code, or give up some functions. |
If there is time and manpower, we should use MSYS to compile the execution files under Windows, so that the initial work will be larger, but there will be less cross-platform compatibility issues. |
@jmjatlanta how did it compile for your?
|
I want to skip editline in MSVC so far: bitshares/bitshares-fc#34. Please check. By the way, please check bitshares/bitshares-fc#32 as well, which enables building with GCC 4.8. |
Your change bitshares/bitshares-fc#34 works with MSVC. |
Check out https://github.com/AmokHuginnsson/replxx Small, BSD licensed, compatible with Linux, Mac, and Windows. Update: It seems the UTF-8 portion of replxx uses a header that is not BSD compatible. Researching to see if there is a fix for this or a different library with similar functionality. |
Editline can't work under MSVC
The text was updated successfully, but these errors were encountered: