//Howard 2013-07-19
//如何檢測app是否包含PIE標志?
答:使用xCode自帶的otool工具。
otool程序在Xcode.app/Contents/Developer/usr/bin目錄下,
假設xCode放在 系統的應用程序目錄,它所在是/Applications/Xcode.app/Contents/Developer/usr/bin
(1)使用終端,進入otool所在目錄:
cd /Applications/Xcode.app/Contents/Developer/usr/bin
(2)拷貝你編譯的.app到該目錄
(3)使用命令 ./otool -hv xxx.app/xxx 檢測。
你編譯的.app實際上是目錄,目標是要檢測.app目錄下可運行的二進制文件。
在此以h264_merge.app為例,
命令是:
./otool -hv h264_merge.app/h264_merge
實測效果如下: