Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(28)

Unified Diff: src/third_party/linux/include/bits/wordsize.h

Issue 8684002: Support building src/tools/linux/dump_syms/dump_syms on OS X Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/third_party/linux/include/bits/wordsize.h
===================================================================
--- src/third_party/linux/include/bits/wordsize.h (revision 0)
+++ src/third_party/linux/include/bits/wordsize.h (working copy)
@@ -0,0 +1,8 @@
+/* Determine the wordsize from the preprocessor defines. */
+
+#if defined __x86_64__
+# define __WORDSIZE 64
+# define __WORDSIZE_COMPAT32 1
+#else
+# define __WORDSIZE 32
+#endif

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted