Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions build_scripts/build_spdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Options:
--without-fio Build without FIO
--with-fio-dst <PATH> FIO install destination
--with-unit-tests Enables the unit tests
--with-usdt Build with userspace DTrace probes enabled
--log <no|tee*|silent> Output logging options
--no-log Same as "--log no"
-n, --dry-run Dry run
Expand Down Expand Up @@ -523,6 +524,10 @@ do
rm_configure_arg "--disable-unit-tests"
msg_info "With unit-tests"
;;
"--with-usdt")
CONFIGURE_ARGS+=("--with-usdt")
msg_info "With userspace DTrace probes enabled"
;;
"--log")
LOG_MODE=$1
LOG_MODE_EXPLICIT="yes"
Expand Down
2 changes: 1 addition & 1 deletion nix/pkgs/libspdk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ let

sourceRoot = spdk.name;

devBuildInputs = with pkgs; [ astyle python3Packages.tabulate python3Packages.jinja2 nix-prefetch-github valgrind ];
devBuildInputs = with pkgs; [ astyle python3Packages.tabulate python3Packages.jinja2 nix-prefetch-github valgrind libsystemtap python3Packages.ijson python3Packages.magic ];

nativeBuildInputs = [
cmake
Expand Down