Skip to content

Instantly share code, notes, and snippets.

View mwpcheung's full-sized avatar
🏠
Working from home

mwpcheung

🏠
Working from home
View GitHub Profile
@mwpcheung
mwpcheung / ios-static.sh
Created April 16, 2020 11:14 — forked from eyeplum/ios-static.sh
Build Google Protobuf C++ Runtime for iOS
#!/bin/bash
## Environments
# Exit the build pass if any command returns a non-zero value
#set -o errexit
# Echo commands
set -x
@mwpcheung
mwpcheung / install_m2crypto.txt
Created July 6, 2018 13:04 — forked from andrisasuke/install_m2crypto.txt
python install m2crypto on Mac OS X
$> brew install openssl
$> brew install swig
$> env LDFLAGS="-L$(brew --prefix openssl)/lib" \
CFLAGS="-I$(brew --prefix openssl)/include" \
SWIG_FEATURES="-cpperraswarn -includeall -I$(brew --prefix openssl)/include" \
pip install m2crypto