blob: 7b56dd5cdec7902ccdc59b001d36d85fd0d89793 [file] [log] [blame]
evan@chromium.org50dfbc42012-01-24 21:26:40 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botf003cfe2008-08-24 09:55:55 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
mmentovai@google.com3d555b82008-08-05 06:16:50 +09004
deanm@google.comd3d79a72008-08-05 20:56:30 +09005// This file adds defines about the platform we're currently building on.
6// Operating System:
7// OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX)
8// Compiler:
9// COMPILER_MSVC / COMPILER_GCC
10// Processor:
11// ARCH_CPU_X86 / ARCH_CPU_X86_64 / ARCH_CPU_X86_FAMILY (X86 or X86_64)
12// ARCH_CPU_32_BITS / ARCH_CPU_64_BITS
13
mmentovai@google.com3d555b82008-08-05 06:16:50 +090014#ifndef BUILD_BUILD_CONFIG_H_
15#define BUILD_BUILD_CONFIG_H_
16
stuartmorgan@chromium.org791de942012-06-30 07:12:20 +090017#if defined(__APPLE__)
18#include <TargetConditionals.h>
19#endif
20
mmentovai@google.com3d555b82008-08-05 06:16:50 +090021// A set of macros to use for platform detection.
torne@chromium.orga00ac9d2013-04-04 20:51:27 +090022#if defined(ANDROID)
23#define OS_ANDROID 1
24#elif defined(__APPLE__)
mmentovai@google.com3d555b82008-08-05 06:16:50 +090025#define OS_MACOSX 1
bbudge@chromium.org3ed0c362012-07-05 00:23:39 +090026#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
stuartmorgan@chromium.org791de942012-06-30 07:12:20 +090027#define OS_IOS 1
bbudge@chromium.org3ed0c362012-07-05 00:23:39 +090028#endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
abarth@chromium.orge7162862010-11-12 17:37:08 +090029#elif defined(__native_client__)
30#define OS_NACL 1
deanm@google.com5b70cbe2008-08-14 20:21:28 +090031#elif defined(__linux__)
mmentovai@google.com3d555b82008-08-05 06:16:50 +090032#define OS_LINUX 1
sky@chromium.org204c1d82009-05-08 08:41:29 +090033// Use TOOLKIT_GTK on linux if TOOLKIT_VIEWS isn't defined.
34#if !defined(TOOLKIT_VIEWS)
35#define TOOLKIT_GTK
36#endif
maruel@chromium.org837a67f2009-02-10 00:42:08 +090037#elif defined(_WIN32)
mmentovai@google.com9a0fc8a2008-08-05 06:32:57 +090038#define OS_WIN 1
sky@chromium.org95936bd2009-05-14 08:21:45 +090039#define TOOLKIT_VIEWS 1
benl@chromium.org6b6b2162009-09-08 01:39:46 +090040#elif defined(__FreeBSD__)
41#define OS_FREEBSD 1
42#define TOOLKIT_GTK
evan@chromium.org21252b12009-12-12 05:04:06 +090043#elif defined(__OpenBSD__)
44#define OS_OPENBSD 1
45#define TOOLKIT_GTK
evan@chromium.org089339c2010-04-01 09:35:15 +090046#elif defined(__sun)
evan@chromium.orgd0e6b852010-02-19 01:11:37 +090047#define OS_SOLARIS 1
48#define TOOLKIT_GTK
mmentovai@google.com3d555b82008-08-05 06:16:50 +090049#else
50#error Please add support for your platform in build/build_config.h
51#endif
52
joth@chromium.org0dd35272010-10-22 22:12:34 +090053#if defined(USE_OPENSSL) && defined(USE_NSS)
54#error Cannot use both OpenSSL and NSS
55#endif
56
robert.nagy@gmail.com5f343eb2011-11-15 09:06:16 +090057// For access to standard BSD features, use OS_BSD instead of a
58// more specific macro.
59#if defined(OS_FREEBSD) || defined(OS_OPENBSD)
60#define OS_BSD 1
61#endif
62
benl@chromium.org6b6b2162009-09-08 01:39:46 +090063// For access to standard POSIXish features, use OS_POSIX instead of a
64// more specific macro.
michaelbai@google.combd0b2452011-06-28 04:13:10 +090065#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \
66 defined(OS_OPENBSD) || defined(OS_SOLARIS) || defined(OS_ANDROID) || \
67 defined(OS_NACL)
mmentovai@google.com3d555b82008-08-05 06:16:50 +090068#define OS_POSIX 1
benl@chromium.org6b6b2162009-09-08 01:39:46 +090069#endif
70
robert.nagy@gmail.com5f343eb2011-11-15 09:06:16 +090071#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
72 !defined(OS_NACL)
73#define USE_X11 1 // Use X for graphics.
74#endif
75
sgk@chromium.org1be49d82009-09-23 01:16:39 +090076// Use tcmalloc
thestig@chromium.orgc491b202010-02-26 09:31:08 +090077#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(NO_TCMALLOC)
sgk@chromium.org1be49d82009-09-23 01:16:39 +090078#define USE_TCMALLOC 1
79#endif
80
mmentovai@google.com3d555b82008-08-05 06:16:50 +090081// Compiler detection.
82#if defined(__GNUC__)
deanm@google.comd3d79a72008-08-05 20:56:30 +090083#define COMPILER_GCC 1
mmentovai@google.com3d555b82008-08-05 06:16:50 +090084#elif defined(_MSC_VER)
deanm@google.comd3d79a72008-08-05 20:56:30 +090085#define COMPILER_MSVC 1
86#else
87#error Please add support for your compiler in build/build_config.h
88#endif
89
90// Processor architecture detection. For more info on what's defined, see:
91// http://msdn.microsoft.com/en-us/library/b0084kay.aspx
92// http://www.agner.org/optimize/calling_conventions.pdf
thestig@chromium.org569de142009-05-02 02:57:09 +090093// or with gcc, run: "echo | gcc -E -dM -"
deanm@google.comd3d79a72008-08-05 20:56:30 +090094#if defined(_M_X64) || defined(__x86_64__)
95#define ARCH_CPU_X86_FAMILY 1
96#define ARCH_CPU_X86_64 1
97#define ARCH_CPU_64_BITS 1
hclam@chromium.orga94887c2011-06-25 05:46:06 +090098#define ARCH_CPU_LITTLE_ENDIAN 1
deanm@google.comd3d79a72008-08-05 20:56:30 +090099#elif defined(_M_IX86) || defined(__i386__)
100#define ARCH_CPU_X86_FAMILY 1
101#define ARCH_CPU_X86 1
102#define ARCH_CPU_32_BITS 1
hclam@chromium.orga94887c2011-06-25 05:46:06 +0900103#define ARCH_CPU_LITTLE_ENDIAN 1
thestig@chromium.org569de142009-05-02 02:57:09 +0900104#elif defined(__ARMEL__)
105#define ARCH_CPU_ARM_FAMILY 1
106#define ARCH_CPU_ARMEL 1
107#define ARCH_CPU_32_BITS 1
hclam@chromium.orga94887c2011-06-25 05:46:06 +0900108#define ARCH_CPU_LITTLE_ENDIAN 1
sehr@google.com15566f92011-08-27 04:03:20 +0900109#elif defined(__pnacl__)
110#define ARCH_CPU_32_BITS 1
petarj@mips.comd3a3e762012-06-18 11:47:05 +0900111#elif defined(__MIPSEL__)
112#define ARCH_CPU_MIPS_FAMILY 1
113#define ARCH_CPU_MIPSEL 1
114#define ARCH_CPU_32_BITS 1
115#define ARCH_CPU_LITTLE_ENDIAN 1
deanm@google.comd3d79a72008-08-05 20:56:30 +0900116#else
117#error Please add support for your architecture in build/build_config.h
mmentovai@google.com3d555b82008-08-05 06:16:50 +0900118#endif
119
brettw@google.come3c034a2008-08-08 03:31:40 +0900120// Type detection for wchar_t.
121#if defined(OS_WIN)
122#define WCHAR_T_IS_UTF16
123#elif defined(OS_POSIX) && defined(COMPILER_GCC) && \
thestig@chromium.org569de142009-05-02 02:57:09 +0900124 defined(__WCHAR_MAX__) && \
125 (__WCHAR_MAX__ == 0x7fffffff || __WCHAR_MAX__ == 0xffffffff)
brettw@google.come3c034a2008-08-08 03:31:40 +0900126#define WCHAR_T_IS_UTF32
brettw@chromium.orgfd7a76b2009-10-23 03:04:17 +0900127#elif defined(OS_POSIX) && defined(COMPILER_GCC) && \
128 defined(__WCHAR_MAX__) && \
129 (__WCHAR_MAX__ == 0x7fff || __WCHAR_MAX__ == 0xffff)
130// On Posix, we'll detect short wchar_t, but projects aren't guaranteed to
131// compile in this mode (in particular, Chrome doesn't). This is intended for
132// other projects using base who manage their own dependencies and make sure
133// short wchar works for them.
134#define WCHAR_T_IS_UTF16
brettw@google.come3c034a2008-08-08 03:31:40 +0900135#else
136#error Please add support for your compiler in build/build_config.h
137#endif
138
stuartmorgan@chromium.org791de942012-06-30 07:12:20 +0900139#if defined(__ARMEL__) && !defined(OS_IOS)
140#define WCHAR_T_IS_UNSIGNED 1
141#elif defined(__MIPSEL__)
142#define WCHAR_T_IS_UNSIGNED 0
143#endif
144
michaelbai@google.combd0b2452011-06-28 04:13:10 +0900145#if defined(OS_ANDROID)
146// The compiler thinks std::string::const_iterator and "const char*" are
147// equivalent types.
148#define STD_STRING_ITERATOR_IS_CHAR_POINTER
149// The compiler thinks base::string16::const_iterator and "char16*" are
150// equivalent types.
151#define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER
152#endif
153
mmentovai@google.com3d555b82008-08-05 06:16:50 +0900154#endif // BUILD_BUILD_CONFIG_H_