diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-22 18:05:33 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-11-28 10:57:58 +0000 |
commit | 6ea5639a03e0ed11be8ba688a5e3d2352aef9c28 (patch) | |
tree | 5563eb91319d0d8ee69168ad13b5c802ffcc60af /ext/googletest/xcode/Config/General.xcconfig | |
parent | 3812ac349ff221d32a0b0378b40b317b6ff61277 (diff) | |
download | gem5-6ea5639a03e0ed11be8ba688a5e3d2352aef9c28.tar.xz |
tests: Import the googletest library, release version 1.8.0.
Change-Id: Ic6c1391a19238011ff5cc97f513dbdc020dc6144
Reviewed-on: https://gem5-review.googlesource.com/6082
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'ext/googletest/xcode/Config/General.xcconfig')
-rw-r--r-- | ext/googletest/xcode/Config/General.xcconfig | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/ext/googletest/xcode/Config/General.xcconfig b/ext/googletest/xcode/Config/General.xcconfig new file mode 100644 index 000000000..f23e32227 --- /dev/null +++ b/ext/googletest/xcode/Config/General.xcconfig @@ -0,0 +1,41 @@ +// +// General.xcconfig +// +// These are General configuration settings for the gtest framework and +// examples. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +// Build for PPC and Intel, 32- and 64-bit +ARCHS = i386 x86_64 ppc ppc64 + +// Zerolink prevents link warnings so turn it off +ZERO_LINK = NO + +// Prebinding considered unhelpful in 10.3 and later +PREBINDING = NO + +// Strictest warning policy +WARNING_CFLAGS = -Wall -Werror -Wendif-labels -Wnewline-eof -Wno-sign-compare -Wshadow + +// Work around Xcode bugs by using external strip. See: +// http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.html +SEPARATE_STRIP = YES + +// Force C99 dialect +GCC_C_LANGUAGE_STANDARD = c99 + +// not sure why apple defaults this on, but it's pretty risky +ALWAYS_SEARCH_USER_PATHS = NO + +// Turn on position dependent code for most cases (overridden where appropriate) +GCC_DYNAMIC_NO_PIC = YES + +// Default SDK and minimum OS version is 10.4 +SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk +MACOSX_DEPLOYMENT_TARGET = 10.4 +GCC_VERSION = 4.0 + +// VERSIONING BUILD SETTINGS (used in Info.plist) +GTEST_VERSIONINFO_ABOUT = © 2008 Google Inc. |