wolfssl/swig/PythonBuild.sh

10 lines
304 B
Bash
Raw Normal View History

2011-02-05 13:14:47 -06:00
#!/bin/bash
echo
2015-01-08 15:47:41 -06:00
swig -python wolfssl.i
2011-02-05 13:14:47 -06:00
pythonIncludes=`python-config --includes`
pythonLibs=`python-config --libs`
2015-01-08 15:47:41 -06: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 13:14:47 -06:00
python runme.py