-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
rocksdb: Build with MinGW #73316
rocksdb: Build with MinGW #73316
Conversation
https://github.com/facebook/rocksdb/pull/6027/files almost ready! |
; | ||
|
||
doCheck = false; # tests take a very long time | ||
checkTarget = "test"; | ||
|
||
# TODO remove | ||
postInstall = stdenv.lib.optionalString (!enableStatic) "rm $out/lib/*.a"; | ||
# TODO(@Ericson2314): Make resusable setup hook for this issue on Windows. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like lz4 intentionally puts it in bindir. Perhaps the setup hook should instead add $out/bin to the -L
lookups:
https://github.com/lz4/lz4/blob/49c20c498b80e70bae3ae604ef468921d79d2121/lib/Makefile#L182-L187
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is something slightly awkward about windows, shared lirbaries (should) end up in bin
. There are a few cases in nixpkgs as well I believe, where we specifically place shared libraries into bin
for windows builds. That way (because the bin
folders would end up on PATH, it usually just works on windows.
I keep traversing all dependencies, and collect .dll
s from lib
and bin
and place them alongside the final executable, as that seems to be the most reliable way to build some form of distributable for windows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the way I think of it is that the libraries primarily should live in lib
, so that you don't pick up extra exe dependencies in the wrong multiple outputs, but each exe needs it's dlls symlinked in its bin
directory since there is no RUNPATH
or RPATH
by which it could find them.
lib
is still the cannonical location, but the bin
symlinks ensure the exes run.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Err, why use pre-compiled anything? We are entirely building from source here (except for linux native boostrapping tools).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think my thing with the TODO is fine for now.
30a58c3
to
0f04efa
Compare
OK this now builds RocksDB, but references a PR commit that I'll probably have to rebase away because facebook/rocksdb#6027 doesn't pass their CI. Should I just vendor the patch then? |
(cherry picked from commit 0cd8882)
Can just use single commit from facebook/rocksdb#6076 for rocksdb!
This is sightly faster/simpler.
0f04efa
to
ae8a905
Compare
THREAD_MSG := ==> building with threading support | ||
THREAD_CPP := -DZSTD_MULTITHREAD | ||
-THREAD_LD := -pthread | ||
+THREAD_LD := |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CC @lhmouse
Motivation for this change
@angerman nerd sniped me. Got all the debs building, now just need to make rocksdb itself work without
localtime_r
.Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @