libssl-dev flags

master
vagrant 2016-07-12 02:00:20 +00:00
parent 02a75dcd79
commit 5f4aad7b19
1 changed files with 24 additions and 17 deletions

13
wscript
View File

@ -2,16 +2,23 @@
# encoding: utf-8
CC = 'clang'
def options(opt):
opt.load('nasm')
opt.load('compiler_c')
def configure(conf):
conf.load('nasm')
conf.load('compiler_c')
conf.check_cc(header_name='openssl/sha.h')
def build(bld):
bld.program(source='sins.c', target='sins',
cflags=['-g', '-std=gnu11'],
linkflags=['-lcrypto', '-lssl'])
bld.program(
source='sins.c',
target='sins',
cflags=['-std=gnu11'],
lib=['ssl', 'crypto']
)
bld(features='asm', source='scrap.asm', target='scrap')