diff options
author | Jan Voung <jvoung@chromium.org> | 2013-06-28 09:49:56 -0700 |
---|---|---|
committer | Jan Voung <jvoung@chromium.org> | 2013-06-28 09:49:56 -0700 |
commit | 0fd7657db6cc9c879a5cfc5204873e7f7462fe45 (patch) | |
tree | 952210369ca8059639acc27fab18e50d8e8cd75c /tools | |
parent | 1af3e2717a02160bfb6ac96dc5ef505581eca3c9 (diff) |
Change header include for llvm.nacl.target.arch in pnacl-llc.
Have nacl-file include "pnacl.h" from the nacl repo, instead
of from the toolchain's standard include locations, so that
it can be moved out of the toolchain tarball and not
advertise it to normal developers.
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3525
R=mseaborn@chromium.org
Review URL: https://codereview.chromium.org/18178007
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pnacl-llc/nacl_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pnacl-llc/nacl_file.cpp b/tools/pnacl-llc/nacl_file.cpp index e8c5a3e736..8ae0399476 100644 --- a/tools/pnacl-llc/nacl_file.cpp +++ b/tools/pnacl-llc/nacl_file.cpp @@ -19,7 +19,7 @@ // path in the nacl tree #include "native_client/src/shared/srpc/nacl_srpc.h" #ifdef __pnacl__ -#include <nacl/pnacl.h> +#include "native_client/src/untrusted/nacl/pnacl.h" #endif #include "SRPCStreamer.h" |