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

Side by Side Diff: native_client_sdk/src/examples/debugging/example.dsc

Issue 10815039: Make use of -lppapi explicit to allow for correct library order. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 { 1 {
2 'TOOLS': ['newlib'], 2 'TOOLS': ['newlib'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'debugging', 5 'NAME' : 'debugging',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : [ 7 'SOURCES' : [
8 'hello_world.c', 8 'hello_world.c',
9 'string_stream.c', 9 'string_stream.c',
10 'string_stream.h', 10 'string_stream.h',
11 'untrusted_crash_dump.c', 11 'untrusted_crash_dump.c',
12 'untrusted_crash_dump.h' 12 'untrusted_crash_dump.h'
13 ], 13 ],
14 'CCFLAGS': ['$(NACL_CCFLAGS)', '-fno-omit-frame-pointer'] 14 'CCFLAGS': ['$(NACL_CCFLAGS)', '-fno-omit-frame-pointer'],
15 'LIBS' : ['ppapi', 'pthread']
15 } 16 }
16 ], 17 ],
17 'POST': 'include Makefile.inc\n', 18 'POST': 'include Makefile.inc\n',
18 'DATA': ['Makefile.inc'], 19 'DATA': ['Makefile.inc'],
19 'DEST': 'examples', 20 'DEST': 'examples',
20 'NAME': 'debugging', 21 'NAME': 'debugging',
21 'TITLE': 'Debugging', 22 'TITLE': 'Debugging',
22 'DESC': """ 23 'DESC': """
23 Debugging example shows how to use developer only features to enable 24 Debugging example shows how to use developer only features to enable
24 catching an exception, and then using that to create a stacktrace.""", 25 catching an exception, and then using that to create a stacktrace.""",
25 'INFO': 'Debugging, Stacktraces.' 26 'INFO': 'Debugging, Stacktraces.'
26 27
27 } 28 }
28 29
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/make_rules.py ('k') | native_client_sdk/src/examples/dlopen/example.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698