tor: fix cross compiling

This commit is contained in:
Richard Marko 2020-05-04 14:22:33 +02:00
parent 2fb5dac372
commit 8aab081504

View file

@ -30,6 +30,10 @@ stdenv.mkDerivation rec {
patches = [ ./disable-monotonic-timer-tests.patch ];
# cross compiles correctly but needs the following
configureFlags = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"--disable-tool-name-check";
NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.cc.isGNU "-lgcc_s";
postPatch = ''