Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 1 | # Copyright 2016 The SwiftShader Authors. All Rights Reserved. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | config("swiftshader_config") { |
Alexis Hetu | 03b67af | 2016-08-31 17:25:40 -0400 | [diff] [blame] | 16 | if (is_win) { |
| 17 | cflags = [ |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 18 | "/GS", # Detects some buffer overruns |
Alexis Hetu | 03b67af | 2016-08-31 17:25:40 -0400 | [diff] [blame] | 19 | "/Zc:wchar_t", |
| 20 | "/D_CRT_SECURE_NO_DEPRECATE", |
| 21 | "/DNOMINMAX", |
| 22 | "/D_WINDLL", |
| 23 | "/EHsc", |
| 24 | "/nologo", |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 25 | "/Gd", # Default calling convention |
Nicolas Capens | eb84fe0 | 2017-02-14 10:03:08 -0500 | [diff] [blame] | 26 | "/DSTRICT_CONFORMANCE", # Disables OpenGL ES 3.0 |
Alexis Hetu | 03b67af | 2016-08-31 17:25:40 -0400 | [diff] [blame] | 27 | ] |
| 28 | |
| 29 | if (is_debug) { |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 30 | cflags += [ "/RTC1" ] # Run-Time Error Checks |
Alexis Hetu | 03b67af | 2016-08-31 17:25:40 -0400 | [diff] [blame] | 31 | } else { |
Alexis Hetu | 8be4110 | 2016-09-12 17:45:55 -0400 | [diff] [blame] | 32 | cflags += [ "/DANGLE_DISABLE_TRACE" ] |
Alexis Hetu | 03b67af | 2016-08-31 17:25:40 -0400 | [diff] [blame] | 33 | } |
| 34 | } else { |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 35 | cflags = [ |
| 36 | "-std=c++11", |
| 37 | "-Wall", |
| 38 | "-fexceptions", |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 39 | "-fno-operator-names", |
| 40 | "-D__STDC_CONSTANT_MACROS", |
| 41 | "-D__STDC_LIMIT_MACROS", |
Nicolas Capens | eb84fe0 | 2017-02-14 10:03:08 -0500 | [diff] [blame] | 42 | "-DSTRICT_CONFORMANCE", # Disables OpenGL ES 3.0 |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 43 | ] |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 44 | |
| 45 | if (is_debug) { |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 46 | cflags += [ |
| 47 | "-g", |
| 48 | "-g3", |
| 49 | ] |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 50 | } else { # Release |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 51 | # All Release builds use function/data sections to make the shared libraries smaller |
| 52 | cflags += [ |
| 53 | "-ffunction-sections", |
| 54 | "-fdata-sections", |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 55 | "-fomit-frame-pointer", |
Alexis Hetu | 68f564d | 2016-07-06 17:43:22 -0400 | [diff] [blame] | 56 | "-DANGLE_DISABLE_TRACE", |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 57 | "-DNDEBUG", |
| 58 | "-O2", |
| 59 | "-Os", |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 60 | ] |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 61 | } |
| 62 | |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 63 | if (target_cpu == "x64") { # 64 bit version |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 64 | cflags += [ |
| 65 | "-m64", |
| 66 | "-fPIC", |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 67 | "-march=core2", |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 68 | ] |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 69 | } else { # 32 bit version |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 70 | cflags += [ |
| 71 | "-m32", |
| 72 | "-msse2", |
| 73 | "-march=i686", |
| 74 | ] |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 75 | } |
Alexis Hetu | a11d03e | 2017-01-27 11:38:59 -0500 | [diff] [blame] | 76 | |
Alexis Hetu | b1031c8 | 2017-01-30 13:46:08 -0500 | [diff] [blame] | 77 | if (is_linux) { |
| 78 | ldflags = [ |
| 79 | "-Wl,--hash-style=both", |
| 80 | "-Wl,--gc-sections", |
| 81 | ] |
| 82 | } |
Alexis Hetu | 91f10e3 | 2016-06-07 19:53:42 -0400 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | |
Alexis Hetu | 68f564d | 2016-07-06 17:43:22 -0400 | [diff] [blame] | 86 | group("swiftshader") { |
Alexis Hetu | 996663b | 2016-09-21 13:47:42 -0400 | [diff] [blame] | 87 | data_deps = [ |
| 88 | "src/OpenGL/libGLESv2:swiftshader_libGLESv2", |
| 89 | "src/OpenGL/libEGL:swiftshader_libEGL", |
| 90 | ] |
Alexis Hetu | a6e99c0 | 2016-11-16 13:53:57 -0500 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | group("swiftshader_tests") { |
| 94 | testonly = true |
| 95 | |
| 96 | data_deps = [ |
| 97 | "tests/unittests:swiftshader_unittests", |
| 98 | ] |
Alexis Hetu | d6d10f9 | 2016-11-22 13:47:04 -0500 | [diff] [blame] | 99 | } |