xcode基本使用

版权声明: https://blog.csdn.net/dadan1314/article/details/89176012

Build Settings

Build Locations

关于OBJ目录(OBJROOT)                                     Intermediate Build Files Path

关于输出目录(CONFIGURATION_BUILD_DIR)    Per-configuration Build Products Path

Deployment

关于安装目录                        Installation Directory                 @executable_path       @rpath

Linking

关于rpath设置                        Runpath Search Paths

Dynamic Library Install Name

Search Paths

关于framework的搜索目录     Framework Search Paths

关于头文件的搜索目录           Header Search Paths

关于库的搜索目录                  Library Search Paths

Preprocessor Macros

关于预处理宏定义         

附        

otool -L <执行体 | 库>        查看库依赖关系

install_name_tool -change   /use/lib/lib1    @executable_path/lib1    <执行体 | 库>  修改库依赖位置

otool -l <执行体 | 库>        查看rpath

猜你喜欢

转载自blog.csdn.net/dadan1314/article/details/89176012