Chromium Code Reviews| Index: SConstruct |
| diff --git a/SConstruct b/SConstruct |
| index 450371f9b1161d8a10d92b197152cf358dd416d6..4452354dc92a97641b86584b8d8e0f4dcff9c8d6 100755 |
| --- a/SConstruct |
| +++ b/SConstruct |
| @@ -2739,7 +2739,7 @@ nacl_env = MakeArchSpecificEnv().Clone( |
| def IsNewLinker(env): |
| """Return True if using a new-style linker with the new-style layout. |
| That means the linker supports the -Trodata-segment switch.""" |
| - return env.Bit('target_arm') or env.Bit('bitcode') |
| + return True |
|
Mark Seaborn
2013/11/12 21:46:07
Please can you do a follow up change to remove IsN
Roland McGrath
2013/11/12 22:10:37
Added a TODO comment.
|
| nacl_env.AddMethod(IsNewLinker) |
| @@ -3005,9 +3005,9 @@ nacl_env.Replace(PPAPI_LIBS=['ppapi']) |
| # See http://code.google.com/p/nativeclient/issues/detail?id=1298 |
| def GetLinkerScriptBaseName(env): |
| if env.Bit('build_x86_64'): |
| - return 'elf64_nacl' |
| + return 'elf_x86_64_nacl' |
| else: |
| - return 'elf_nacl' |
| + return 'elf_i386_nacl' |
| if (nacl_env.Bit('nacl_glibc') and |
| nacl_env.Bit('nacl_static_link')): |