prusa-slicer: disable building of test_voronoi.cpp

Disable test_voronoi.cpp as the assembler hangs during build,
likely due to commit e682dd84cf

See issue #185808 for details.
This commit is contained in:
André-Patrick Bubel 2022-08-16 12:41:49 +02:00
parent 99bbbc7021
commit a23d5aa0b5

View File

@ -126,6 +126,11 @@ stdenv.mkDerivation rec {
# Since version 2.5.0 of nlopt we need to link to libnlopt, as libnlopt_cxx
# now seems to be integrated into the main lib.
sed -i 's|nlopt_cxx|nlopt|g' cmake/modules/FindNLopt.cmake
# Disable test_voronoi.cpp as the assembler hangs during build,
# likely due to commit e682dd84cff5d2420fcc0a40508557477f6cc9d3
# See issue #185808 for details.
sed -i 's|test_voronoi.cpp||g' tests/libslic3r/CMakeLists.txt
'';
src = fetchFromGitHub {