mobile-shell/mosh

Investigate -pie vs -Wl,-pie on OS X

オープン

#273 opened on 2012/05/15

 (0 件のコメント) (0 件のリアクション) (0 人の担当者)C++ (737 件のフォーク)batch import
OS Xbuggood first issuesecurity

Repository metrics

Stars
 (12,063 個のスター)
PR merge metrics
 (PR metrics pending)

説明

[from a blog comment]

I believe for Mac OS X you need to use -Wl,-pie even with gcc. If you use gcc -v when linking on Mac OS X you won't see -pie being passed to the linker. Here's the output of otool -h on an executable built with -pie in LDFLAGS on Mac OS X 10.6:

Mach header
magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
0xfeedfacf 16777223 3 0x80 2 11 1776 0x00000085

Compare that to one built with -Wl,-pie

Mach header
magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
0xfeedfacf 16777223 3 0x80 2 11 1776 0x00200085

In /usr/include/mach-o/loader.h we find this:

#define MH_PIE 0x200000 /* When this bit is set, the OS will
load the main executable at a
random address. Only used in
MH_EXECUTE filetypes. */

コントリビューターガイド