Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Uses the PBS files pbs_ifl.h and pbs.i to create pbs.py, pbs_wrap.c and _pbs.so.
conf="/etc/pbs.conf" # PBS configuration file
#############################
# Set your configuration here
#############################
# Example: If using my laptop.
PYTHON_INCL="/usr/include/python3.8"
# Example: If using Python in a virtual environment.
#PYTHON_INCL=/var/www/wsgi/virtualenvs/pbsweb/include/python3.8
SWIG_EXEC="/usr/bin/swig"
# You should not need to change anything below here.
# Make sure we have a PBS config file.
if [ ! -f $conf ]; then
echo "Error: missing PBS configuration file $conf"
exit 0
fi
# The PBS config file must be sourced to provide $PBS_EXEC.
. $conf
# Running swig creates pbs.py and pbs_wrap.c
$SWIG_EXEC -I$PBS_EXEC/include -python pbs.i
if [ $? -ne 0 ]; then
echo 'Error: You are probably missing the file: /opt/pbs/include/pbs_ifl.h'
exit 0
fi
# Running gcc creates _pbs.so
gcc -shared -fPIC -I$PYTHON_INCL -I$PBS_EXEC/include pbs_wrap.c $PBS_EXEC/lib/libpbs.so \