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

Side by Side Diff: native_client_sdk/src/tools/nacl_llvm.mk

Issue 22434005: [NaCl SDK] Unable to debug on GLIBC (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # 5 #
6 # GNU Make based build file. For details on GNU Make see: 6 # GNU Make based build file. For details on GNU Make see:
7 # http://www.gnu.org/software/make/manual/make.html 7 # http://www.gnu.org/software/make/manual/make.html
8 # 8 #
9 9
10 # 10 #
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 # 158 #
159 # HTML file generation 159 # HTML file generation
160 # 160 #
161 CREATE_HTML := python $(NACL_SDK_ROOT)/tools/create_html.py 161 CREATE_HTML := python $(NACL_SDK_ROOT)/tools/create_html.py
162 162
163 define HTML_RULE 163 define HTML_RULE
164 all: $(OUTDIR)/$(1).html 164 all: $(OUTDIR)/$(1).html
165 $(OUTDIR)/$(1).html: $(OUTDIR)/$(1).pexe 165 $(OUTDIR)/$(1).html: $(OUTDIR)/$(1).pexe
166 $(call LOG,CREATE_HTML,$$@,$(CREATE_HTML) -o $$@ $$^) 166 $(call LOG,CREATE_HTML,$$@,$(CREATE_HTML) -o $$@ $$^)
167 endef 167 endef
168
169
170 #
171 # Determine which executable to pass into the debugger. For pnacl, this is
172 # the .bc -> .nexe translated app.
173 #
174 GDB_DEBUG_TARGET = $(abspath $(OUTDIR))/$(TARGET)_$(SYSARCH).nexe
OLDNEW
« native_client_sdk/src/tools/nacl_gcc.mk ('K') | « native_client_sdk/src/tools/nacl_gcc.mk ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698