2011-02-05 11:14:47 -08:00
|
|
|
#!/bin/bash
|
|
|
|
echo
|
2015-01-08 14:47:41 -07:00
|
|
|
swig -python wolfssl.i
|
2011-02-05 11:14:47 -08:00
|
|
|
pythonIncludes=`python-config --includes`
|
|
|
|
pythonLibs=`python-config --libs`
|
2015-01-08 14:47:41 -07:00
|
|
|
gcc -c -fpic wolfssl_wrap.c -I$pythonIncludes
|
|
|
|
gcc -c -fpic wolfssl_adds.c
|
|
|
|
gcc -shared -flat_namespace wolfssl_adds.o wolfssl_wrap.o -lwolfssl $pythonLibs -o _wolfssl.so
|
2011-02-05 11:14:47 -08:00
|
|
|
python runme.py
|