- Create certificate in Keychain: Certificate Assistant -> Create a Certificate
codesign -s -fv /Applications/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in livecd | |
mount /dev/sda2 /target # mount root filesystem | |
mount -t proc proc /target/proc/ | |
mount -t sysfs sys /target/sys/ | |
mount -o bind /dev /target/dev/ | |
chroot /target | |
# in chroot | |
echo "nameserver 8.8.8.8" > /etc/resolv.conf | |
apt-get update | |
apt-get install bcmwl-kernel-source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"env": {"GOPATH": "$HOME/go", "PATH": "$GOPATH/bin:/usr/local/opt/go/libexec/bin:$PATH"}, | |
"fmt_tab_width": 4, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dyld Error Message: | |
Symbol not found: _mkostemp | |
Referenced from: /usr/local/lib/libfontconfig.1.dylib | |
Expected in: /usr/lib/libSystem.B.dylib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for framework in $(find $SRCROOT/Carthage/Build/iOS/ -name "*.framework"); do | |
SCRIPT_INPUT_FILE_0=$framework SCRIPT_INPUT_FILE_COUNT=1 carthage copy-frameworks | |
done |
OlderNewer