コンパイル時のオプション指定(デバッグあり。実機向け。ターゲットはiOS10以降)
clang++ -g -target arm64-apple-ios10.0 -isysroot `xcrun --show-sdk-path --sdk iphoneos` -c no1.cpp
リンク時のオプション指定(-dynamiclibが大事)
clang++ -target arm64-apple-ios10.0 -isysroot `xcrun --show-sdk-path --sdk iphoneos` -dynamiclib -o no1.dylib no1.o