mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
6 lines
243 B
Bash
Executable File
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
|