Merge pull request #146035 from risicle/ris-pcl-aarch64-fix

pcl: fix build on aarch64

authored by Domen Kožar and committed by GitHub 0d67f33c 2285978c

+6
+6
pkgs/development/libraries/pcl/default.nix
··· 32 32 sha256 = "0jhvciaw43y6iqqk7hyxnfhn1b4bsw5fpy04s01r5pkcsjjbdbqc"; 33 33 }; 34 34 35 + # remove attempt to prevent (x86/x87-specific) extended precision use 36 + # when SSE not detected 37 + postPatch = lib.optionalString (!(stdenv.isi686 || stdenv.isx86_64)) '' 38 + sed -i '/-ffloat-store/d' cmake/pcl_find_sse.cmake 39 + ''; 40 + 35 41 nativeBuildInputs = [ pkg-config cmake wrapQtAppsHook ]; 36 42 buildInputs = [ 37 43 eigen