diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-24 03:15:13 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-24 03:15:13 +0000 |
commit | 1ad5a7b2a5b605005e997cb89b4f8bdc1011d2b2 (patch) | |
tree | fe5b579008be83db7eb237b09ae437d9de486885 /chrome/chrome_exe.gypi | |
parent | 5696b83d30a6edace89241c7c9ed28387b072a85 (diff) | |
download | chromium_src-1ad5a7b2a5b605005e997cb89b4f8bdc1011d2b2.zip chromium_src-1ad5a7b2a5b605005e997cb89b4f8bdc1011d2b2.tar.gz chromium_src-1ad5a7b2a5b605005e997cb89b4f8bdc1011d2b2.tar.bz2 |
Now try and make -pie stick for 32-bit Linux too.
TBR=jeffbailey
Review URL: http://codereview.chromium.org/7240019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90335 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_exe.gypi')
-rw-r--r-- | chrome/chrome_exe.gypi | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index d7a1723..238779f 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -200,11 +200,10 @@ ['disable_pie==1', { 'ldflags': ['-nopie'], }, { - # Building with -fPIE fails on ARM and ia32 bots. - # http://code.google.com/p/chromium/issues/detail?id=57908 - # Until that is fixed, at least use it on Linux 64-bit. + # Building with -pie needs investigating on ARM. + # For now, at least use it on Linux Intel. 'conditions': [ - ['target_arch=="x64"', { + ['target_arch=="x64" or target_arch=="ia32"', { 'ldflags': ['-pie'], }], ], |