mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
15 lines
266 B
Bash
15 lines
266 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 /path/to/IronPython/";
|
|
exit;
|
|
fi
|
|
|
|
IRONPYTHON="$1"
|
|
LIBS=$(cat libs.txt | awk '{print "Lib/"$1}')
|
|
OUTDIR=$PWD
|
|
|
|
cd $IRONPYTHON
|
|
./ipy.exe Tools/Scripts/pyc.py /target:dll /out:pythonlibs $LIBS
|
|
mv pythonlibs.dll $OUTDIR/
|