mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
13 lines
369 B
Bash
Executable file
13 lines
369 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. ./scripts/env-native-cpu-without-avx-512
|
|
|
|
if [ "$1" != "mio" ] && [ "$1" != "glommio" ]; then
|
|
echo "Usage: $0 [mio|glommio] [ARGS]"
|
|
else
|
|
if [ "$1" = "mio" ]; then
|
|
cargo run --release --bin aquatic_udp -- "${@:2}"
|
|
else
|
|
cargo run --release --features "with-glommio" --no-default-features --bin aquatic_udp -- "${@:2}"
|
|
fi
|
|
fi
|