Files
Arnaud Diederen bf7a817c1d Backported fixes
2020-01-06 09:48:53 +01:00

6 lines
243 B
Bash
Executable File

#!/bin/sh
#generate libpython3.so which forwads to actual libpython3.M.so for running IDA (copy it next to IDA's binary)
LDFLAGS=`python3-config --ldflags`
gcc -pthread -shared -Wl,--no-as-needed -o libpython3.so -Wl,-hlibpython3.so $LDFLAGS