Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Unified Diff: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc

Issue 7828088: Change pnacl llvm triple to use nacl instead of linux inside plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
index eb48d6d093a651cddabff4f3c16996973f474035..1fd57ae1a91d0c527681f4e6c1d70df9fc2ce2cd 100644
--- a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Native Client Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -266,17 +266,17 @@ void WINAPI DoTranslateThread(void* arg) {
// probably is PIC vs non-PIC and micro-arch specification.
const char* llc_args_x8632[] = { "-march=x86",
"-mcpu=pentium4",
- "-mtriple=i686-none-linux-gnu",
+ "-mtriple=i686-none-nacl-gnu",
"-asm-verbose=false",
"-filetype=obj" };
const char* llc_args_x8664[] = { "-march=x86-64",
"-mcpu=core2",
- "-mtriple=x86_64-none-linux-gnu",
+ "-mtriple=x86_64-none-nacl-gnu",
"-asm-verbose=false",
"-filetype=obj" };
const char* llc_args_arm[] = { "-march=arm",
"-mcpu=cortex-a8",
- "-mtriple=armv7a-none-linux-gnueabi",
+ "-mtriple=armv7a-none-nacl-gnueabi",
"-asm-verbose=false",
"-filetype=obj",
"-arm-reserve-r9",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698