Skip to content

Instantly share code, notes, and snippets.

View ixsluo's full-sized avatar

Xiaoshan Luo ixsluo

  • Jilin University
View GitHub Profile
@NullYing
NullYing / compile_mac.sh
Last active April 29, 2022 09:44
修正pycharm在macos m1的arm python无法调试
g++ -fPIC -D_REENTRANT -std=c++11 -arch x86_64 -c -o attach_x86_64.o attach.cpp
g++ -dynamiclib -nostartfiles -arch x86_64 -o attach_x86_64.dylib attach_x86_64.o -lc
rm attach_x86_64.o
mv attach_x86_64.dylib ../attach_x86_64.dylib
g++ -fPIC -D_REENTRANT -std=c++11 -arch i386 -c -o attach_x86.o attach.cpp
g++ -dynamiclib -nostartfiles -arch i386 -o attach_x86.dylib attach_x86.o -lc
rm attach_x86.o
mv attach_x86.dylib ../attach_x86.dylib