├── .gitignore ├── Makefile ├── README.md ├── codesign ├── codesign_fix.cpp ├── libsubstrate.dylib └── substrate.h /.gitignore: -------------------------------------------------------------------------------- 1 | codesign_fix.dylib 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conradev/codesign_fix/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conradev/codesign_fix/HEAD/README.md -------------------------------------------------------------------------------- /codesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conradev/codesign_fix/HEAD/codesign -------------------------------------------------------------------------------- /codesign_fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conradev/codesign_fix/HEAD/codesign_fix.cpp -------------------------------------------------------------------------------- /libsubstrate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conradev/codesign_fix/HEAD/libsubstrate.dylib -------------------------------------------------------------------------------- /substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conradev/codesign_fix/HEAD/substrate.h --------------------------------------------------------------------------------