Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build_dpkg.sh - use build_rust.sh instead cargo build directly #528

Closed
wants to merge 3 commits into from
Closed
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: 1 addition & 4 deletions src/build_dpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,7 @@ done

####################################################
# Build the Rust programs
pushd rust > /dev/null || exit
cargo clean
cargo build --all --release
popd > /dev/null || exit
./build_rust.sh

# Copy newly built Rust files
# - The Python integration Library
Expand Down
3 changes: 2 additions & 1 deletion src/build_rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ rustup update

# Start building
echo "Please wait while the system is compiled. Service will not be interrupted during this stage."
PROGS="lqosd lqtop xdp_iphash_to_cpu_cmdline xdp_pping lqusers lqos_map_perf uisp_integration lqos_support_tool"
PROGS="lqosd lqtop xdp_iphash_to_cpu_cmdline xdp_pping lqusers lqos_map_perf uisp_integration lqos_support_tool lqos_setup"

mkdir -p bin/static
pushd rust > /dev/null
#cargo clean
Expand Down
Loading