-
Notifications
You must be signed in to change notification settings - Fork 109
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
FreeBSD support possible? #176
Comments
What kind of support? Mono? or .NET Core? Using a sqlite provided by the OS? Or bundle an e_sqlite3 build for FreeBSD? |
.NET Core (need e_sqlite3 build for FreeBSD) |
What is the status of .NET Core on FreeBSD? Not officially supported by Microsoft, I assume... This is probably straightforward, but I wonder about my ability to keep it maintained and tested over time. |
Well.. It's not officially supported (at least for now), but coreclr/corefx (native parts) are building under FreeBSD. Managed can be built under Windows - so the support is there, driven by community. .NET cli is not building at the moment (I was able to build 1.x version in past, at the moment trying to get 2.0.0 build to compile), but apps can be run using coreclr (there are some "hard" corners still, but WIP). Right now I'm trying to run some basic .net core asp.net app and got blocked by not having e_sqlite3 build for FreeBSD - that's why I'm asking - I can build/compile this myself (or help testing this on FreeBSD), just need some howto start with this :) |
Just a little add - copying libsqlite3.so (tested version 3.20.0 from pkg repository) as e_sqlite3.so into runtime directory "made it work" |
Another option that should work: Instead of using one of my bundle packages (which currently does not include an e_sqlite3 build for FreeBSD), you could just use SQLitePCLRaw.core (the base library) and then also add SQLitePCLRaw.provider.sqlite3.netstandard11, and then add this line of code:
Which should cause the sqlite library from the FreeBSD package to be found. I think. |
Closing old/stale issue. |
Hi,
Would it be possible to have FreeBSD support added? Or what is needed to make that happen, I could try to add it myself, just need some instructions where/how to start with it?
The text was updated successfully, but these errors were encountered: