blob: bb78ef8802797a8d8568a4e6c4bc77cfb92d082e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
cc -s -m64
cc -s -z noexecstack -m64
# This is for AMD64 architecture; use else:
cc -s -lssl -lcrypto
# This will be used to link .o files into an executable with
# [Open|Libre]SSL in the default lib search path.
# Note: UCSPI-SSL's conf-ld needs to use the same architecture!
|