ld: warning: PIE disabled.

尝试iOS device时链接期提示警告信息:

ld: warning: PIE disabled. Absolute addressing (perhaps -mdynamic-no-pic) not allowed in code signed PIE, but used in _FT_Stream_Open from /Users/kres/Downloads/freetype-2.4.9/libfreetype.a(ftsystem.o). To fix this warning, don’t compile with -mdynamic-no-pic or link with -Wl,-no_pie

查了一下,所谓的PIE是指position independent executable,即地址无关exe,换句话说也就是生成的机器码中不能出现lea rax, some_symbol_name这样的绝对寻址,而只能以:lea rax, [rel some_symbol_name]这种形式出现,目的是为了提高安全性,这样OS可以以随机的地址加载exe。去掉CFLAGS中的-mdynamic-no-pic后重新编译链接armv6 armv7两个版本的free type代码,警告去除,不知是否会有副作用,继续体验…

这种警告解决的办法:targets-->build Settings-->Linking-->Don't create Position Independent Executables 设置为YES.警告自然消除。

你可能感兴趣的:(ld: warning: PIE disabled.)