petsc: use default debugging/optimization flags

qbisi e13ba117 fd7f49c3

+1 -7
+1 -7
pkgs/by-name/pe/petsc/package.nix
··· 181 181 "--with-cxx=${lib.getDev mpi}/bin/mpicxx" 182 182 "--with-fc=${lib.getDev mpi}/bin/mpif90" 183 183 ] 184 - ++ lib.optionals (!debug) [ 185 - "--with-debugging=0" 186 - "COPTFLAGS=-O3" 187 - "FOPTFLAGS=-O3" 188 - "CXXOPTFLAGS=-O3" 189 - "CXXFLAGS=-O3" 190 - ] 184 + ++ lib.optional (!debug) "--with-debugging=0" 191 185 ++ lib.optional (!fortranSupport) "--with-fortran-bindings=0" 192 186 ++ lib.optional pythonSupport "--with-petsc4py=1" 193 187 ++ lib.optional withMetis "--with-metis=1"