Skip to content

Commit

Permalink
buildRosPackage: default separateDebugInfo to true
Browse files Browse the repository at this point in the history
Closes #431
  • Loading branch information
kjeremy authored and lopsided98 committed Jul 20, 2024
1 parent 3f5755a commit 1ba7044
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion distros/build-ros-package/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@
, CXXFLAGS ? ""
, postFixup ? ""
, passthru ? { }
, separateDebugInfo ? true
, ...
}@args:

(if buildType == "ament_python" then pythonPackages.buildPythonPackage
else stdenv.mkDerivation) (args // {
inherit doCheck dontWrapQtApps;
inherit doCheck dontWrapQtApps separateDebugInfo;

# Disable warnings that cause "Log limit exceeded" errors on Hydra in lots of
# packages that use Eigen
Expand Down

0 comments on commit 1ba7044

Please sign in to comment.