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

Side by Side Diff: build/build_config.h

Issue 234803002: disable more stacktrace usage in debug uclibc builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make sure glibc/uclibc macros are defined Created 6 years, 8 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
« no previous file with comments | « base/logging.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // This file adds defines about the platform we're currently building on. 5 // This file adds defines about the platform we're currently building on.
6 // Operating System: 6 // Operating System:
7 // OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX) 7 // OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX)
8 // Compiler: 8 // Compiler:
9 // COMPILER_MSVC / COMPILER_GCC 9 // COMPILER_MSVC / COMPILER_GCC
10 // Processor: 10 // Processor:
(...skipping 12 matching lines...) Expand all
23 #define OS_ANDROID 1 23 #define OS_ANDROID 1
24 #elif defined(__APPLE__) 24 #elif defined(__APPLE__)
25 #define OS_MACOSX 1 25 #define OS_MACOSX 1
26 #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE 26 #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
27 #define OS_IOS 1 27 #define OS_IOS 1
28 #endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE 28 #endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
29 #elif defined(__native_client__) 29 #elif defined(__native_client__)
30 #define OS_NACL 1 30 #define OS_NACL 1
31 #elif defined(__linux__) 31 #elif defined(__linux__)
32 #define OS_LINUX 1 32 #define OS_LINUX 1
33 // include a system header to pull in features.h for glibc/uclibc macros.
34 #include <unistd.h>
33 #if defined(__GLIBC__) && !defined(__UCLIBC__) 35 #if defined(__GLIBC__) && !defined(__UCLIBC__)
34 // we really are using glibc, not uClibc pretending to be glibc 36 // we really are using glibc, not uClibc pretending to be glibc
35 #define LIBC_GLIBC 1 37 #define LIBC_GLIBC 1
36 #endif 38 #endif
37 #elif defined(_WIN32) 39 #elif defined(_WIN32)
38 #define OS_WIN 1 40 #define OS_WIN 1
39 #define TOOLKIT_VIEWS 1 41 #define TOOLKIT_VIEWS 1
40 #elif defined(__FreeBSD__) 42 #elif defined(__FreeBSD__)
41 #define OS_FREEBSD 1 43 #define OS_FREEBSD 1
42 #elif defined(__OpenBSD__) 44 #elif defined(__OpenBSD__)
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 #if defined(OS_ANDROID) 148 #if defined(OS_ANDROID)
147 // The compiler thinks std::string::const_iterator and "const char*" are 149 // The compiler thinks std::string::const_iterator and "const char*" are
148 // equivalent types. 150 // equivalent types.
149 #define STD_STRING_ITERATOR_IS_CHAR_POINTER 151 #define STD_STRING_ITERATOR_IS_CHAR_POINTER
150 // The compiler thinks base::string16::const_iterator and "char16*" are 152 // The compiler thinks base::string16::const_iterator and "char16*" are
151 // equivalent types. 153 // equivalent types.
152 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER 154 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER
153 #endif 155 #endif
154 156
155 #endif // BUILD_BUILD_CONFIG_H_ 157 #endif // BUILD_BUILD_CONFIG_H_
OLDNEW
« no previous file with comments | « base/logging.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698