mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
7 lines
188 B
Bash
7 lines
188 B
Bash
#!/bin/sh
|
|
for i in BUILD_SSLV23 BUILD_SSLV2 BUILD_SSLV3 BUILD_SSL_COMMON BUILD_SSL_BIO BUILD_SSL_OPTIONAL
|
|
do
|
|
time gcc -D$i -o $i.o -c -I. -I../include -O3 -fomit-frame-pointer ssl.c
|
|
done
|
|
|