mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
9 lines
273 B
Bash
9 lines
273 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
os=$(echo `uname -s`)
|
||
|
if [ $os == "Darwin" ]; then
|
||
|
./aio_client_ssl -c 100 -n 10000 -k -S "../libmbedcrypto.dylib;../libmbedx509.dylib;../libmbedtls.dylib"
|
||
|
else
|
||
|
./aio_client_ssl -c 100 -n 10000 -k -S "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so"
|
||
|
fi
|