mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
0d3c1c8b1a
This change fixes stderr to be unbuffered. Added hardware AES on ARM64 to help safeguard against timing attacks. The curl.com command will be somewhat more pleasant to use.
13 lines
792 B
Bash
Executable file
13 lines
792 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
rm -rf o/samples
|
|
make -j16 o//third_party/zstd/zstd.com
|
|
o//third_party/zstd/zstd.com --maxdict=524288 -9 -T0 -B4096 --train $(find o//{examples,tool,third_party} -name \*.com)
|
|
o//third_party/zstd/zstd.com -9 --ultra -fz o//tool/curl/curl.com
|
|
o//third_party/zstd/zstd.com -D dictionary -9 --ultra -fz o//tool/curl/curl.com
|
|
o//third_party/zstd/zstd.com -9 --ultra -fz o//examples/hello.com
|
|
o//third_party/zstd/zstd.com -D dictionary -9 --ultra -fz o//examples/hello.com
|
|
o//third_party/zstd/zstd.com -9 --ultra -fz o//examples/hello2.com
|
|
o//third_party/zstd/zstd.com -D dictionary -9 --ultra -fz o//examples/hello2.com
|
|
o//third_party/zstd/zstd.com -9 --ultra -fz o//examples/hello3.com
|
|
o//third_party/zstd/zstd.com -D dictionary -9 --ultra -fz o//examples/hello3.com
|