Ben Clayton | 3c69034 | 2020-03-24 22:38:59 +0000 | [diff] [blame] | 1 | # Copyright 2020 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 | |
Antonio Maiorano | bccfe71 | 2020-04-20 17:48:53 -0400 | [diff] [blame] | 15 | cmake_minimum_required(VERSION 3.13) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 16 | |
Ben Clayton | 3cc0aea | 2020-01-08 19:09:25 +0000 | [diff] [blame] | 17 | set(CMAKE_CXX_STANDARD 14) |
| 18 | |
Ben Clayton | 30b6b59 | 2019-08-07 15:04:11 +0100 | [diff] [blame] | 19 | project(SwiftShader C CXX ASM) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 20 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 21 | ########################################################### |
| 22 | # Detect system |
| 23 | ########################################################### |
| 24 | |
Nicolas Capens | 6f42209 | 2015-12-23 15:12:45 -0500 | [diff] [blame] | 25 | if(CMAKE_SYSTEM_NAME MATCHES "Linux") |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 26 | set(LINUX TRUE) |
Stephen White | e6ab01f | 2019-04-04 14:31:25 -0400 | [diff] [blame] | 27 | elseif(CMAKE_SYSTEM_NAME MATCHES "Android") |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 28 | set(ANDROID TRUE) |
Stephen White | e6ab01f | 2019-04-04 14:31:25 -0400 | [diff] [blame] | 29 | set(CMAKE_CXX_FLAGS "-DANDROID_NDK_BUILD") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 30 | elseif(WIN32) |
| 31 | elseif(APPLE) |
David 'Digit' Turner | d371793 | 2019-11-19 17:54:00 +0100 | [diff] [blame] | 32 | elseif(FUCHSIA) |
| 33 | # NOTE: Building for Fuchsia requires a Fuchsia CMake-based SDK. |
| 34 | # See https://fuchsia-review.googlesource.com/c/fuchsia/+/379673 |
David 'Digit' Turner | 0809046 | 2020-04-17 15:53:21 +0200 | [diff] [blame] | 35 | find_package(FuchsiaLibraries) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 36 | else() |
| 37 | message(FATAL_ERROR "Platform is not supported") |
| 38 | endif() |
| 39 | |
Nicolas Capens | 30cd7d4 | 2017-04-25 15:17:25 -0400 | [diff] [blame] | 40 | if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch") |
| 41 | if(CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 42 | set(ARCH "aarch64") |
| 43 | else() |
| 44 | set(ARCH "arm") |
| 45 | endif() |
Gordana Cmiljanovic | 082dfec | 2018-10-19 11:36:15 +0200 | [diff] [blame] | 46 | elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "mips*") |
| 47 | if(CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 48 | set(ARCH "mips64el") |
| 49 | else() |
| 50 | set(ARCH "mipsel") |
| 51 | endif() |
Colin Samples | f63a3ab | 2019-06-13 12:53:09 -0400 | [diff] [blame] | 52 | elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc*") |
| 53 | if(CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 54 | set(ARCH "ppc64le") |
| 55 | else() |
| 56 | message(FATAL_ERROR "Architecture is not supported") |
| 57 | endif() |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 58 | else() |
Nicolas Capens | 30cd7d4 | 2017-04-25 15:17:25 -0400 | [diff] [blame] | 59 | if(CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 60 | set(ARCH "x86_64") |
| 61 | else() |
| 62 | set(ARCH "x86") |
| 63 | endif() |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 64 | endif() |
| 65 | |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 66 | set(CMAKE_MACOSX_RPATH TRUE) |
Nicolas Capens | 007c6c5 | 2017-06-09 11:21:48 -0400 | [diff] [blame] | 67 | |
Nicolas Capens | d7a21cc | 2018-09-11 13:09:28 -0400 | [diff] [blame] | 68 | if ((CMAKE_GENERATOR MATCHES "Visual Studio") AND (CMAKE_GENERATOR_TOOLSET STREQUAL "")) |
| 69 | message(WARNING "Visual Studio generators use the x86 host compiler by " |
| 70 | "default, even for 64-bit targets. This can result in linker " |
| 71 | "instability and out of memory errors. To use the 64-bit " |
| 72 | "host compiler, pass -Thost=x64 on the CMake command line.") |
| 73 | endif() |
| 74 | |
Ben Clayton | 4901ffd | 2019-06-27 10:39:07 +0100 | [diff] [blame] | 75 | # Use CCache if available |
| 76 | find_program(CCACHE_FOUND ccache) |
| 77 | if(CCACHE_FOUND) |
| 78 | message(STATUS "Using ccache") |
| 79 | set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) |
| 80 | set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache) |
Ben Clayton | 1e8486b | 2020-01-22 17:01:52 +0000 | [diff] [blame] | 81 | endif() |
Ben Clayton | 4901ffd | 2019-06-27 10:39:07 +0100 | [diff] [blame] | 82 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 83 | ########################################################### |
Ben Clayton | a9af883 | 2019-08-14 13:09:43 +0100 | [diff] [blame] | 84 | # Host libraries |
| 85 | ########################################################### |
| 86 | |
| 87 | find_library(X11 X11) |
| 88 | find_library(XCB xcb) |
| 89 | |
| 90 | ########################################################### |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 91 | # Options |
| 92 | ########################################################### |
| 93 | |
| 94 | if(NOT CMAKE_BUILD_TYPE) |
| 95 | set(CMAKE_BUILD_TYPE "Release" CACHE STRING "The type of build: Debug Release MinSizeRel RelWithDebInfo." FORCE) |
Antonio Maiorano | 31038ea | 2020-04-15 16:47:00 -0400 | [diff] [blame] | 96 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS Debug Release MinSizeRel RelWithDebInfo) |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 97 | endif() |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 98 | |
Ben Clayton | 5837d87 | 2020-01-20 16:23:36 +0000 | [diff] [blame] | 99 | function (option_if_not_defined name description default) |
| 100 | if(NOT DEFINED ${name}) |
| 101 | option(${name} ${description} ${default}) |
| 102 | endif() |
| 103 | endfunction() |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 104 | |
Ben Clayton | 9cc163c | 2020-01-20 16:26:36 +0000 | [diff] [blame] | 105 | function (set_if_not_defined name value) |
| 106 | if(NOT DEFINED ${name}) |
| 107 | set(${name} ${value} PARENT_SCOPE) |
| 108 | endif() |
| 109 | endfunction() |
| 110 | |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 111 | option_if_not_defined(SWIFTSHADER_BUILD_EGL "Build the EGL library" TRUE) |
| 112 | option_if_not_defined(SWIFTSHADER_BUILD_GLESv2 "Build the OpenGL ES 2 library" TRUE) |
| 113 | option_if_not_defined(SWIFTSHADER_BUILD_GLES_CM "Build the OpenGL ES 1.1 library" TRUE) |
| 114 | option_if_not_defined(SWIFTSHADER_BUILD_VULKAN "Build the Vulkan library" TRUE) |
Nicolas Capens | 13943ba | 2020-03-17 22:36:24 -0400 | [diff] [blame] | 115 | option_if_not_defined(SWIFTSHADER_BUILD_PVR "Build the PowerVR examples" TRUE) |
| 116 | option_if_not_defined(SWIFTSHADER_GET_PVR "Check out the PowerVR submodule" FALSE) |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 117 | |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 118 | option_if_not_defined(SWIFTSHADER_USE_GROUP_SOURCES "Group the source files in a folder tree for Visual Studio" TRUE) |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 119 | |
Nicolas Capens | 45755df | 2020-03-30 12:42:40 -0400 | [diff] [blame] | 120 | option_if_not_defined(SWIFTSHADER_BUILD_TESTS "Build unit tests" TRUE) |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 121 | option_if_not_defined(SWIFTSHADER_BUILD_BENCHMARKS "Build benchmarks" FALSE) |
Ben Clayton | 5837d87 | 2020-01-20 16:23:36 +0000 | [diff] [blame] | 122 | |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 123 | option_if_not_defined(SWIFTSHADER_MSAN "Build with memory sanitizer" FALSE) |
| 124 | option_if_not_defined(SWIFTSHADER_ASAN "Build with address sanitizer" FALSE) |
| 125 | option_if_not_defined(SWIFTSHADER_TSAN "Build with thread sanitizer" FALSE) |
| 126 | option_if_not_defined(SWIFTSHADER_UBSAN "Build with undefined behavior sanitizer" FALSE) |
Ben Clayton | 063fc02 | 2020-03-23 13:18:09 +0000 | [diff] [blame] | 127 | option_if_not_defined(SWIFTSHADER_EMIT_COVERAGE "Emit code coverage information" FALSE) |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 128 | option_if_not_defined(SWIFTSHADER_WARNINGS_AS_ERRORS "Treat all warnings as errors" TRUE) |
| 129 | option_if_not_defined(SWIFTSHADER_DCHECK_ALWAYS_ON "Check validation macros even in release builds" FALSE) |
| 130 | option_if_not_defined(REACTOR_EMIT_DEBUG_INFO "Emit debug info for JIT functions" FALSE) |
| 131 | option_if_not_defined(REACTOR_EMIT_PRINT_LOCATION "Emit printing of location info for JIT functions" FALSE) |
| 132 | option_if_not_defined(REACTOR_ENABLE_PRINT "Enable RR_PRINT macros" FALSE) |
| 133 | option_if_not_defined(REACTOR_VERIFY_LLVM_IR "Check reactor-generated LLVM IR is valid even in release builds" FALSE) |
| 134 | option_if_not_defined(SWIFTSHADER_LESS_DEBUG_INFO "Generate less debug info to reduce file size" FALSE) |
| 135 | option_if_not_defined(SWIFTSHADER_ENABLE_VULKAN_DEBUGGER "Enable Vulkan debugger support" FALSE) |
| 136 | option_if_not_defined(SWIFTSHADER_ENABLE_ASTC "Enable ASTC compressed textures support" TRUE) # TODO(b/150130101) |
Nicolas Capens | bf8fd5b | 2018-06-21 00:42:00 -0400 | [diff] [blame] | 137 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 138 | set(BUILD_MARL ${SWIFTSHADER_BUILD_VULKAN}) |
Ben Clayton | 5e4d55f | 2019-12-10 19:40:58 +0000 | [diff] [blame] | 139 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 140 | if(${SWIFTSHADER_BUILD_VULKAN} AND ${SWIFTSHADER_ENABLE_VULKAN_DEBUGGER}) |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 141 | set_if_not_defined(SWIFTSHADER_BUILD_CPPDAP TRUE) |
Ben Clayton | 5e4d55f | 2019-12-10 19:40:58 +0000 | [diff] [blame] | 142 | else() |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 143 | set_if_not_defined(SWIFTSHADER_BUILD_CPPDAP FALSE) |
Ben Clayton | 5e4d55f | 2019-12-10 19:40:58 +0000 | [diff] [blame] | 144 | endif() |
Ben Clayton | e693b62 | 2019-09-05 12:48:37 +0100 | [diff] [blame] | 145 | |
Nicolas Capens | 5f8a16a | 2019-08-15 10:36:13 -0400 | [diff] [blame] | 146 | set(DEFAULT_REACTOR_BACKEND "LLVM") |
Nicolas Capens | 3957b7f | 2018-10-15 12:54:41 -0400 | [diff] [blame] | 147 | set(REACTOR_BACKEND ${DEFAULT_REACTOR_BACKEND} CACHE STRING "JIT compiler back-end used by Reactor") |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 148 | set_property(CACHE REACTOR_BACKEND PROPERTY STRINGS LLVM Subzero) |
| 149 | |
Ben Clayton | cafff78 | 2020-03-26 11:18:05 +0000 | [diff] [blame] | 150 | set(DEFAULT_SWIFTSHADER_LLVM_VERSION "7.0") |
| 151 | set(SWIFTSHADER_LLVM_VERSION ${DEFAULT_SWIFTSHADER_LLVM_VERSION} CACHE STRING "LLVM version to use") |
| 152 | set_property(CACHE SWIFTSHADER_LLVM_VERSION PROPERTY STRINGS "7.0" "10.0") |
| 153 | |
Antonio Maiorano | 062dc18 | 2019-12-09 11:52:31 -0500 | [diff] [blame] | 154 | # If defined, overrides the default optimization level of the current reactor backend. |
| 155 | # Set to one of the rr::Optimization::Level enum values. |
| 156 | set(REACTOR_DEFAULT_OPT_LEVEL "Default" CACHE STRING "Reactor default optimization level") |
| 157 | set_property(CACHE REACTOR_DEFAULT_OPT_LEVEL PROPERTY STRINGS "None" "Less" "Default" "Aggressive") |
| 158 | |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 159 | # LLVM disallows calling cmake . from the main LLVM dir, the reason is that |
| 160 | # it builds header files that could overwrite the orignal ones. Here we |
| 161 | # want to include LLVM as a subdirectory and even though it wouldn't cause |
| 162 | # the problem, if cmake . is called from the main dir, the condition that |
Erwin Jansen | d46faeb | 2018-11-19 16:01:37 -0800 | [diff] [blame] | 163 | # LLVM checkes, "CMAKE_CURRENT_SOURCE_DIR == CMAKE_CURRENT_BINARY_DIR" will be true. So we |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 164 | # disallow it ourselves too to. In addition if there are remining CMakeFiles |
| 165 | # and CMakeCache in the directory, cmake .. from a subdirectory will still |
| 166 | # try to build from the main directory so we instruct users to delete these |
| 167 | # files when they get the error. |
Erwin Jansen | d46faeb | 2018-11-19 16:01:37 -0800 | [diff] [blame] | 168 | if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR) |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 169 | message(FATAL_ERROR "In source builds are not allowed by LLVM, please create a build/ directory and build from there. You may have to delete the CMakeCache.txt file and CMakeFiles directory that are next to the CMakeLists.txt.") |
| 170 | endif() |
| 171 | |
Nicolas Capens | 1dfcdb0 | 2020-03-12 21:12:52 +0000 | [diff] [blame] | 172 | set_property(GLOBAL PROPERTY USE_FOLDERS TRUE) |
Nicolas Capens | 18b8d68 | 2017-07-25 15:31:45 -0400 | [diff] [blame] | 173 | |
| 174 | ########################################################### |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 175 | # Directories |
| 176 | ########################################################### |
| 177 | |
Antonio Maiorano | 8772b42 | 2020-04-15 15:00:36 -0400 | [diff] [blame] | 178 | set(SWIFTSHADER_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
| 179 | set(SOURCE_DIR ${SWIFTSHADER_DIR}/src) |
| 180 | set(THIRD_PARTY_DIR ${SWIFTSHADER_DIR}/third_party) |
| 181 | set(TESTS_DIR ${SWIFTSHADER_DIR}/tests) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 182 | |
| 183 | ########################################################### |
Nicolas Capens | fe5861b | 2018-08-03 16:01:48 -0400 | [diff] [blame] | 184 | # Initialize submodules |
| 185 | ########################################################### |
| 186 | |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 187 | function(InitSubmodule target submodule_dir) |
| 188 | if (NOT TARGET ${target}) |
| 189 | if(NOT EXISTS ${submodule_dir}/.git) |
Ben Clayton | 55890e1 | 2020-01-31 14:07:21 +0000 | [diff] [blame] | 190 | message(WARNING " |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 191 | Target ${target} from submodule ${submodule_dir} missing. |
Ben Clayton | 55890e1 | 2020-01-31 14:07:21 +0000 | [diff] [blame] | 192 | Running 'git submodule update --init' to download it: |
| 193 | ") |
Nicolas Capens | fe5861b | 2018-08-03 16:01:48 -0400 | [diff] [blame] | 194 | |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 195 | execute_process(COMMAND git -C ${SWIFTSHADER_DIR} submodule update --init ${submodule_dir}) |
Ben Clayton | 55890e1 | 2020-01-31 14:07:21 +0000 | [diff] [blame] | 196 | endif() |
Dan Sinclair | 6480d4e | 2019-03-11 10:48:19 -0400 | [diff] [blame] | 197 | endif() |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 198 | endfunction() |
| 199 | |
| 200 | if (SWIFTSHADER_BUILD_TESTS) |
| 201 | InitSubmodule(gtest ${THIRD_PARTY_DIR}/googletest) |
Nicolas Capens | fe5861b | 2018-08-03 16:01:48 -0400 | [diff] [blame] | 202 | endif() |
| 203 | |
Ben Clayton | 55890e1 | 2020-01-31 14:07:21 +0000 | [diff] [blame] | 204 | if(SWIFTSHADER_BUILD_BENCHMARKS) |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 205 | InitSubmodule(benchmark::benchmark ${THIRD_PARTY_DIR}/benchmark) |
Nicolas Capens | aca9fb2 | 2020-06-10 12:53:31 -0400 | [diff] [blame] | 206 | InitSubmodule(glslang ${THIRD_PARTY_DIR}/glslang) |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 207 | endif() |
Ben Clayton | 55890e1 | 2020-01-31 14:07:21 +0000 | [diff] [blame] | 208 | |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 209 | if(REACTOR_EMIT_DEBUG_INFO) |
| 210 | InitSubmodule(libbacktrace ${THIRD_PARTY_DIR}/libbacktrace/src) |
Ben Clayton | 755467c | 2019-03-23 11:57:02 +0000 | [diff] [blame] | 211 | endif() |
| 212 | |
Nicolas Capens | 13943ba | 2020-03-17 22:36:24 -0400 | [diff] [blame] | 213 | if(SWIFTSHADER_GET_PVR) |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 214 | InitSubmodule(PVRCore ${THIRD_PARTY_DIR}/PowerVR_Examples) |
Nicolas Capens | 13943ba | 2020-03-17 22:36:24 -0400 | [diff] [blame] | 215 | set(SWIFTSHADER_GET_PVR FALSE CACHE BOOL "Check out the PowerVR submodule" FORCE) |
| 216 | endif() |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 217 | if(EXISTS ${THIRD_PARTY_DIR}/PowerVR_Examples/.git) |
Nicolas Capens | 13943ba | 2020-03-17 22:36:24 -0400 | [diff] [blame] | 218 | set(HAVE_PVR_SUBMODULE TRUE) |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 219 | endif() |
| 220 | |
Antonio Maiorano | 1e2fba3 | 2020-04-15 16:02:58 -0400 | [diff] [blame] | 221 | if(SWIFTSHADER_BUILD_CPPDAP) |
| 222 | InitSubmodule(json ${THIRD_PARTY_DIR}/json) |
| 223 | InitSubmodule(cppdap ${THIRD_PARTY_DIR}/cppdap) |
| 224 | endif() |
| 225 | |
| 226 | |
Nicolas Capens | fe5861b | 2018-08-03 16:01:48 -0400 | [diff] [blame] | 227 | ########################################################### |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 228 | # Convenience macros |
| 229 | ########################################################### |
| 230 | |
| 231 | # Recursively calls source_group on the files of the directory |
| 232 | # so that Visual Studio has the files in a folder tree |
| 233 | macro(group_all_sources directory) |
Antonio Maiorano | 8772b42 | 2020-04-15 15:00:36 -0400 | [diff] [blame] | 234 | file(GLOB files RELATIVE ${SWIFTSHADER_DIR}/${directory} ${SWIFTSHADER_DIR}/${directory}/*) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 235 | foreach(file ${files}) |
Antonio Maiorano | 8772b42 | 2020-04-15 15:00:36 -0400 | [diff] [blame] | 236 | if(IS_DIRECTORY ${SWIFTSHADER_DIR}/${directory}/${file}) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 237 | group_all_sources(${directory}/${file}) |
| 238 | else() |
| 239 | string(REPLACE "/" "\\" groupname ${directory}) |
Antonio Maiorano | 8772b42 | 2020-04-15 15:00:36 -0400 | [diff] [blame] | 240 | source_group(${groupname} FILES ${SWIFTSHADER_DIR}/${directory}/${file}) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 241 | endif() |
| 242 | endforeach() |
| 243 | endmacro() |
| 244 | |
| 245 | # Takes target library and a directory where the export map is |
| 246 | # and add the linker options so that only the API symbols are |
| 247 | # exported. |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 248 | macro(set_shared_library_export_map TARGET DIR) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 249 | if(MSVC) |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 250 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " /DEF:\"${DIR}/${TARGET}.def\"") |
Ben Clayton | 8565e77 | 2019-06-10 11:58:37 +0100 | [diff] [blame] | 251 | elseif(APPLE) |
| 252 | # The exported symbols list only exports the API functions and |
| 253 | # hides all the others. |
| 254 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS "-exported_symbols_list ${DIR}/${TARGET}.exports") |
| 255 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_DEPENDS "${DIR}/${TARGET}.exports;") |
| 256 | # Don't allow undefined symbols, unless it's a Sanitizer build. |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 257 | if(NOT SWIFTSHADER_MSAN AND NOT SWIFTSHADER_ASAN AND NOT SWIFTSHADER_TSAN AND NOT SWIFTSHADER_UBSAN) |
Ben Clayton | 8565e77 | 2019-06-10 11:58:37 +0100 | [diff] [blame] | 258 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,-undefined,error") |
| 259 | endif() |
David 'Digit' Turner | d371793 | 2019-11-19 17:54:00 +0100 | [diff] [blame] | 260 | elseif(LINUX OR FUCHSIA) |
David 'Digit' Turner | 6e44504 | 2020-04-17 16:27:56 +0200 | [diff] [blame] | 261 | # NOTE: The Fuchsia linker script is needed to export the vk_icdInitializeConnectToServiceCallback |
| 262 | # entry point (a private implementation detail betwen the Fuchsia Vulkan loader and the ICD). |
| 263 | if ((FUCHSIA) AND ("${TARGET}" STREQUAL "vk_swiftshader")) |
| 264 | set(LINKER_VERSION_SCRIPT "fuchsia_vk_swiftshader.lds") |
| 265 | else() |
| 266 | set(LINKER_VERSION_SCRIPT "${TARGET}.lds") |
| 267 | endif() |
| 268 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 269 | # The version script only exports the API functions and |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 270 | # hides all the others. |
David 'Digit' Turner | 6e44504 | 2020-04-17 16:27:56 +0200 | [diff] [blame] | 271 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--version-script=${DIR}/${LINKER_VERSION_SCRIPT}") |
| 272 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_DEPENDS "${DIR}/${LINKER_VERSION_SCRIPT};") |
Nicolas Capens | bf8fd5b | 2018-06-21 00:42:00 -0400 | [diff] [blame] | 273 | |
Nicolas Capens | e3621dc | 2020-02-25 22:45:42 -0500 | [diff] [blame] | 274 | # -Bsymbolic binds symbol references to their global definitions within |
| 275 | # a shared object, thereby preventing symbol preemption. |
James Price | 126720b | 2020-03-03 10:20:00 -0500 | [diff] [blame] | 276 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,-Bsymbolic") |
Nicolas Capens | 517a57f | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 277 | |
Gordana Cmiljanovic | 20622c0 | 2018-11-05 15:00:11 +0100 | [diff] [blame] | 278 | if(ARCH STREQUAL "mipsel" OR ARCH STREQUAL "mips64el") |
Gordana Cmiljanovic | 082dfec | 2018-10-19 11:36:15 +0200 | [diff] [blame] | 279 | # MIPS supports sysv hash-style only. |
| 280 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--hash-style=sysv") |
David 'Digit' Turner | d371793 | 2019-11-19 17:54:00 +0100 | [diff] [blame] | 281 | elseif(LINUX) |
Gordana Cmiljanovic | 082dfec | 2018-10-19 11:36:15 +0200 | [diff] [blame] | 282 | # Both hash-style are needed, because we want both gold and |
| 283 | # GNU ld to be able to read our libraries. |
| 284 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--hash-style=both") |
| 285 | endif() |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 286 | |
Ben Clayton | 063fc02 | 2020-03-23 13:18:09 +0000 | [diff] [blame] | 287 | if(NOT ${SWIFTSHADER_EMIT_COVERAGE}) |
| 288 | # Gc sections is used in combination with each functions being |
| 289 | # in its own section, to reduce the binary size. |
| 290 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--gc-sections") |
| 291 | endif() |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 292 | |
| 293 | # Don't allow undefined symbols, unless it's a Sanitizer build. |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 294 | if(NOT SWIFTSHADER_MSAN AND NOT SWIFTSHADER_ASAN AND NOT SWIFTSHADER_TSAN AND NOT SWIFTSHADER_UBSAN) |
Nicolas Capens | bf8fd5b | 2018-06-21 00:42:00 -0400 | [diff] [blame] | 295 | set_property(TARGET ${TARGET} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--no-undefined") |
| 296 | endif() |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 297 | endif() |
| 298 | endmacro() |
| 299 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 300 | if(SWIFTSHADER_USE_GROUP_SOURCES) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 301 | group_all_sources(src) |
| 302 | endif() |
| 303 | |
| 304 | ########################################################### |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 305 | # Compile flags |
| 306 | ########################################################### |
| 307 | |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 308 | # Flags for project code (non 3rd party) |
| 309 | set(SWIFTSHADER_COMPILE_OPTIONS "") |
Ben Clayton | 063fc02 | 2020-03-23 13:18:09 +0000 | [diff] [blame] | 310 | set(SWIFTSHADER_LINK_FLAGS "") |
| 311 | set(SWIFTSHADER_LIBS "") |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 312 | |
Nicolas Capens | 6f42209 | 2015-12-23 15:12:45 -0500 | [diff] [blame] | 313 | macro(set_cpp_flag FLAG) |
| 314 | if(${ARGC} GREATER 1) |
| 315 | set(CMAKE_CXX_FLAGS_${ARGV1} "${CMAKE_CXX_FLAGS_${ARGV1}} ${FLAG}") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 316 | else() |
Nicolas Capens | 6f42209 | 2015-12-23 15:12:45 -0500 | [diff] [blame] | 317 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${FLAG}") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 318 | endif() |
| 319 | endmacro() |
| 320 | |
Ben Clayton | 48c8a18 | 2019-05-21 20:00:20 +0100 | [diff] [blame] | 321 | macro(set_linker_flag FLAG) |
| 322 | if(${ARGC} GREATER 1) |
Nicolas Capens | 5d4c981 | 2020-07-02 10:06:25 -0400 | [diff] [blame] | 323 | set(CMAKE_EXE_LINKER_FLAGS_${ARGV1} "${CMAKE_EXE_LINKER_FLAGS_${ARGV1}} ${FLAG}") |
Ben Clayton | 48c8a18 | 2019-05-21 20:00:20 +0100 | [diff] [blame] | 324 | else() |
| 325 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${FLAG}") |
| 326 | endif() |
| 327 | endmacro() |
| 328 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 329 | if(MSVC) |
| 330 | set_cpp_flag("/MP") |
| 331 | add_definitions(-D_CRT_SECURE_NO_WARNINGS) |
Antonio Maiorano | 5bce1f4 | 2019-05-10 16:03:49 -0400 | [diff] [blame] | 332 | add_definitions(-D_SCL_SECURE_NO_WARNINGS) |
Nicolas Capens | 4c9f04b | 2019-01-31 22:09:03 -0500 | [diff] [blame] | 333 | add_definitions(-D_SBCS) # Single Byte Character Set (ASCII) |
Ben Clayton | 30b6b59 | 2019-08-07 15:04:11 +0100 | [diff] [blame] | 334 | add_definitions(-D_ENABLE_EXTENDED_ALIGNED_STORAGE) # Disable MSVC warnings about std::aligned_storage being broken before VS 2017 15.8 |
Antonio Maiorano | 5bce1f4 | 2019-05-10 16:03:49 -0400 | [diff] [blame] | 335 | |
Nicolas Capens | 5d4c981 | 2020-07-02 10:06:25 -0400 | [diff] [blame] | 336 | set_linker_flag("/DEBUG:FASTLINK" DEBUG) |
| 337 | set_linker_flag("/DEBUG:FASTLINK" RELWITHDEBINFO) |
Nicolas Capens | f554c54 | 2020-01-09 17:19:35 +0000 | [diff] [blame] | 338 | |
Antonio Maiorano | 5bce1f4 | 2019-05-10 16:03:49 -0400 | [diff] [blame] | 339 | # Disable specific warnings |
| 340 | # TODO: Not all of these should be disabled, but for now, we want a warning-free msvc build. Remove these one by one |
| 341 | # and fix the actual warnings in code. |
| 342 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
| 343 | "/wd4005" # 'identifier' : macro redefinition |
| 344 | "/wd4018" # 'expression' : signed/unsigned mismatch |
Ben Clayton | 4d4a190 | 2019-05-15 11:15:42 +0100 | [diff] [blame] | 345 | "/wd4065" # switch statement contains 'default' but no 'case' labels |
Antonio Maiorano | 5bce1f4 | 2019-05-10 16:03:49 -0400 | [diff] [blame] | 346 | "/wd4141" # 'modifier' : used more than once |
Antonio Maiorano | 5bce1f4 | 2019-05-10 16:03:49 -0400 | [diff] [blame] | 347 | "/wd4244" # 'conversion' conversion from 'type1' to 'type2', possible loss of data |
| 348 | "/wd4267" # 'var' : conversion from 'size_t' to 'type', possible loss of data |
| 349 | "/wd4291" # 'void X new(size_t,unsigned int,unsigned int)': no matching operator delete found; memory will not be freed if initialization throws an exception |
| 350 | "/wd4309" # 'conversion' : truncation of constant value |
| 351 | "/wd4624" # 'derived class' : destructor was implicitly defined as deleted because a base class destructor is inaccessible or deleted |
| 352 | "/wd4800" # 'type' : forcing value to bool 'true' or 'false' (performance warning) |
| 353 | "/wd4838" # conversion from 'type_1' to 'type_2' requires a narrowing conversion |
| 354 | "/wd5030" # attribute 'attribute' is not recognized |
| 355 | "/wd5038" # data member 'member1' will be initialized after data member 'member2' data member 'member' will be initialized after base class 'base_class' |
| 356 | ) |
| 357 | |
| 358 | # Treat specific warnings as errors |
| 359 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
| 360 | "/we4018" # 'expression' : signed/unsigned mismatch |
Antonio Maiorano | 23da073 | 2019-05-14 22:32:16 -0400 | [diff] [blame] | 361 | "/we4471" # 'enumeration': a forward declaration of an unscoped enumeration must have an underlying type (int assumed) |
Antonio Maiorano | 5bce1f4 | 2019-05-10 16:03:49 -0400 | [diff] [blame] | 362 | "/we4838" # conversion from 'type_1' to 'type_2' requires a narrowing conversion |
| 363 | "/we5038" # data member 'member1' will be initialized after data member 'member2' data member 'member' will be initialized after base class 'base_class' |
| 364 | ) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 365 | else() |
Ben Clayton | a5f0763 | 2020-02-04 11:43:25 +0000 | [diff] [blame] | 366 | # Explicitly enable these warnings. |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 367 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 368 | "-Wall" |
Ben Clayton | 8a983f7 | 2019-06-18 17:56:36 +0100 | [diff] [blame] | 369 | "-Wreorder" |
| 370 | "-Wsign-compare" |
| 371 | "-Wmissing-braces" |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 372 | ) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 373 | |
Ben Clayton | 5e82876 | 2019-04-24 19:16:52 +0100 | [diff] [blame] | 374 | if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 375 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
Ben Clayton | 5470988 | 2020-04-16 10:40:08 +0100 | [diff] [blame] | 376 | "-Wextra" |
| 377 | "-Wunreachable-code-loop-increment" |
Ben Clayton | 8a983f7 | 2019-06-18 17:56:36 +0100 | [diff] [blame] | 378 | "-Wunused-lambda-capture" |
| 379 | "-Wstring-conversion" |
| 380 | "-Wextra-semi" |
| 381 | "-Wignored-qualifiers" |
Ben Clayton | a5f0763 | 2020-02-04 11:43:25 +0000 | [diff] [blame] | 382 | ) |
| 383 | endif() |
| 384 | |
Ben Clayton | 063fc02 | 2020-03-23 13:18:09 +0000 | [diff] [blame] | 385 | if (SWIFTSHADER_EMIT_COVERAGE) |
| 386 | if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") |
| 387 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "--coverage") |
| 388 | list(APPEND SWIFTSHADER_LIBS "gcov") |
| 389 | elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") |
| 390 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-fprofile-instr-generate" "-fcoverage-mapping") |
| 391 | list(APPEND SWIFTSHADER_LINK_FLAGS "-fprofile-instr-generate" "-fcoverage-mapping") |
| 392 | else() |
| 393 | message(FATAL_ERROR "Coverage generation not supported for the ${CMAKE_CXX_COMPILER_ID} toolchain") |
| 394 | endif() |
| 395 | endif() |
| 396 | |
Ben Clayton | a5f0763 | 2020-02-04 11:43:25 +0000 | [diff] [blame] | 397 | # Disable pedanitc warnings |
| 398 | if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") |
| 399 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
| 400 | "-Wno-ignored-attributes" # ignoring attributes on template argument 'X' |
| 401 | "-Wno-attributes" # 'X' attribute ignored |
| 402 | "-Wno-strict-aliasing" # dereferencing type-punned pointer will break strict-aliasing rules |
| 403 | "-Wno-comment" # multi-line comment |
| 404 | ) |
| 405 | if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 9) |
| 406 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
| 407 | "-Wno-init-list-lifetime" # assignment from temporary initializer_list does not extend the lifetime of the underlying array |
| 408 | ) |
| 409 | endif() |
| 410 | elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") |
| 411 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
| 412 | "-Wno-unneeded-internal-declaration" # function 'X' is not needed and will not be emitted |
| 413 | "-Wno-unused-private-field" # private field 'offset' is not used - TODO: Consider enabling this once Vulkan is further implemented. |
| 414 | "-Wno-comment" # multi-line comment |
| 415 | "-Wno-undefined-var-template" # instantiation of variable 'X' required here, but no definition is available |
Ben Clayton | a7bc2b9 | 2020-03-26 11:24:49 +0000 | [diff] [blame] | 416 | "-Wno-extra-semi" # extra ';' after member function definition |
Ben Clayton | 5470988 | 2020-04-16 10:40:08 +0100 | [diff] [blame] | 417 | "-Wno-unused-parameter" # unused parameter 'X' |
David 'Digit' Turner | 0809046 | 2020-04-17 15:53:21 +0200 | [diff] [blame] | 418 | "-Wno-deprecated-copy" # implicit copy constructor for 'X' is deprecated because of user-declared copy assignment operator. |
Ben Clayton | a5f0763 | 2020-02-04 11:43:25 +0000 | [diff] [blame] | 419 | |
Nicolas Capens | 67180a0 | 2019-06-17 15:27:03 -0400 | [diff] [blame] | 420 | # Silence errors caused by unknown warnings when building with older |
| 421 | # versions of Clang. This demands checking that warnings added above |
| 422 | # are spelled correctly and work as intended! |
| 423 | "-Wno-unknown-warning-option" |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 424 | ) |
Nicolas Capens | 825d344 | 2018-11-06 23:50:05 -0500 | [diff] [blame] | 425 | endif() |
| 426 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 427 | # Remove xor, and, or and friends from the list of keywords, they are used |
| 428 | # by Reactor |
Ben Clayton | 4ceb77d | 2019-04-24 12:09:59 +0100 | [diff] [blame] | 429 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS |
| 430 | "-fno-operator-names" |
| 431 | ) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 432 | |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 433 | if(ARCH STREQUAL "x86") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 434 | set_cpp_flag("-m32") |
| 435 | set_cpp_flag("-msse2") |
Nicolas Capens | 0424edc | 2018-01-03 14:06:30 -0500 | [diff] [blame] | 436 | set_cpp_flag("-mfpmath=sse") |
| 437 | set_cpp_flag("-march=pentium4") |
| 438 | set_cpp_flag("-mtune=generic") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 439 | endif() |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 440 | if(ARCH STREQUAL "x86_64") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 441 | set_cpp_flag("-m64") |
| 442 | set_cpp_flag("-fPIC") |
Nicolas Capens | 0424edc | 2018-01-03 14:06:30 -0500 | [diff] [blame] | 443 | set_cpp_flag("-march=x86-64") |
| 444 | set_cpp_flag("-mtune=generic") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 445 | endif() |
Gordana Cmiljanovic | 082dfec | 2018-10-19 11:36:15 +0200 | [diff] [blame] | 446 | if(ARCH STREQUAL "mipsel") |
Jiaxun Yang | 55275c3 | 2020-02-09 14:52:42 +0800 | [diff] [blame] | 447 | set_cpp_flag("-EL") |
Gordana Cmiljanovic | 082dfec | 2018-10-19 11:36:15 +0200 | [diff] [blame] | 448 | set_cpp_flag("-march=mips32r2") |
| 449 | set_cpp_flag("-fPIC") |
| 450 | set_cpp_flag("-mhard-float") |
| 451 | set_cpp_flag("-mfp32") |
Jiaxun Yang | 55275c3 | 2020-02-09 14:52:42 +0800 | [diff] [blame] | 452 | set_cpp_flag("-mxgot") |
Gordana Cmiljanovic | 082dfec | 2018-10-19 11:36:15 +0200 | [diff] [blame] | 453 | endif() |
Gordana Cmiljanovic | 20622c0 | 2018-11-05 15:00:11 +0100 | [diff] [blame] | 454 | if(ARCH STREQUAL "mips64el") |
Jiaxun Yang | 55275c3 | 2020-02-09 14:52:42 +0800 | [diff] [blame] | 455 | set_cpp_flag("-EL") |
Gordana Cmiljanovic | 20622c0 | 2018-11-05 15:00:11 +0100 | [diff] [blame] | 456 | set_cpp_flag("-march=mips64r2") |
| 457 | set_cpp_flag("-mabi=64") |
| 458 | set_cpp_flag("-fPIC") |
Jiaxun Yang | 55275c3 | 2020-02-09 14:52:42 +0800 | [diff] [blame] | 459 | set_cpp_flag("-mxgot") |
Gordana Cmiljanovic | 20622c0 | 2018-11-05 15:00:11 +0100 | [diff] [blame] | 460 | endif() |
Nicolas Capens | 499bb76 | 2018-06-29 13:30:57 -0400 | [diff] [blame] | 461 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 462 | if(SWIFTSHADER_LESS_DEBUG_INFO) |
Paul Thomson | 09b5079 | 2019-10-17 12:55:56 +0100 | [diff] [blame] | 463 | # Use -g1 to be able to get stack traces |
| 464 | set_cpp_flag("-g -g1" DEBUG) |
| 465 | set_cpp_flag("-g -g1" RELWITHDEBINFO) |
| 466 | else() |
| 467 | # Use -g3 to have even more debug info |
| 468 | set_cpp_flag("-g -g3" DEBUG) |
| 469 | set_cpp_flag("-g -g3" RELWITHDEBINFO) |
| 470 | endif() |
| 471 | |
Ben Clayton | 09a91e4 | 2019-02-05 17:58:38 +0000 | [diff] [blame] | 472 | if(NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") |
| 473 | # Treated as an unused argument with clang |
| 474 | set_cpp_flag("-s" RELEASE) |
| 475 | endif() |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 476 | |
| 477 | # For distribution it is more important to be slim than super optimized |
Alexis Hetu | 2c0546d | 2017-05-24 11:16:26 -0400 | [diff] [blame] | 478 | set_cpp_flag("-Os" RELEASE) |
| 479 | set_cpp_flag("-Os" RELWITHDEBINFO) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 480 | |
| 481 | set_cpp_flag("-DNDEBUG" RELEASE) |
| 482 | set_cpp_flag("-DNDEBUG" RELWITHDEBINFO) |
| 483 | set_cpp_flag("-DANGLE_DISABLE_TRACE" RELEASE) |
| 484 | set_cpp_flag("-DANGLE_DISABLE_TRACE" RELWITHDEBINFO) |
| 485 | |
| 486 | # Put each variable and function in its own section so that when linking |
| 487 | # with -gc-sections unused functions and variables are removed. |
| 488 | set_cpp_flag("-ffunction-sections" RELEASE) |
| 489 | set_cpp_flag("-fdata-sections" RELEASE) |
| 490 | set_cpp_flag("-fomit-frame-pointer" RELEASE) |
Nicolas Capens | bf8fd5b | 2018-06-21 00:42:00 -0400 | [diff] [blame] | 491 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 492 | if(SWIFTSHADER_MSAN) |
Ben Clayton | dae9792 | 2019-05-17 12:09:31 +0100 | [diff] [blame] | 493 | set_cpp_flag("-fsanitize=memory") |
Ben Clayton | 48c8a18 | 2019-05-21 20:00:20 +0100 | [diff] [blame] | 494 | set_linker_flag("-fsanitize=memory") |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 495 | elseif(SWIFTSHADER_ASAN) |
Ben Clayton | dae9792 | 2019-05-17 12:09:31 +0100 | [diff] [blame] | 496 | set_cpp_flag("-fsanitize=address") |
Ben Clayton | 48c8a18 | 2019-05-21 20:00:20 +0100 | [diff] [blame] | 497 | set_linker_flag("-fsanitize=address") |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 498 | elseif(SWIFTSHADER_TSAN) |
Ben Clayton | dae9792 | 2019-05-17 12:09:31 +0100 | [diff] [blame] | 499 | set_cpp_flag("-fsanitize=thread") |
Ben Clayton | 48c8a18 | 2019-05-21 20:00:20 +0100 | [diff] [blame] | 500 | set_linker_flag("-fsanitize=thread") |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 501 | elseif(SWIFTSHADER_UBSAN) |
Ben Clayton | dae9792 | 2019-05-17 12:09:31 +0100 | [diff] [blame] | 502 | set_cpp_flag("-fsanitize=undefined") |
Ben Clayton | 48c8a18 | 2019-05-21 20:00:20 +0100 | [diff] [blame] | 503 | set_linker_flag("-fsanitize=undefined") |
Nicolas Capens | bf8fd5b | 2018-06-21 00:42:00 -0400 | [diff] [blame] | 504 | endif() |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 505 | endif() |
| 506 | |
Antonio Maiorano | 4b8b078 | 2020-03-23 14:11:01 -0400 | [diff] [blame] | 507 | if(SWIFTSHADER_DCHECK_ALWAYS_ON) |
| 508 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-DDCHECK_ALWAYS_ON") |
| 509 | endif() |
| 510 | |
Nicolas Capens | 8c13b2f | 2020-03-06 01:12:01 -0500 | [diff] [blame] | 511 | if(SWIFTSHADER_WARNINGS_AS_ERRORS) |
| 512 | if(MSVC) |
| 513 | set(WARNINGS_AS_ERRORS "/WX") # Treat all warnings as errors |
| 514 | else() |
| 515 | set(WARNINGS_AS_ERRORS "-Werror") # Treat all warnings as errors |
| 516 | endif() |
| 517 | endif() |
| 518 | |
Antonio Maiorano | f448d8e | 2019-04-26 16:19:16 -0400 | [diff] [blame] | 519 | if(REACTOR_EMIT_PRINT_LOCATION) |
Antonio Maiorano | 415d181 | 2020-02-11 16:22:55 -0500 | [diff] [blame] | 520 | # This feature depends on REACTOR_EMIT_DEBUG_INFO and REACTOR_ENABLE_PRINT |
Antonio Maiorano | f448d8e | 2019-04-26 16:19:16 -0400 | [diff] [blame] | 521 | set(REACTOR_EMIT_DEBUG_INFO "On") |
Antonio Maiorano | 415d181 | 2020-02-11 16:22:55 -0500 | [diff] [blame] | 522 | set(REACTOR_ENABLE_PRINT "On") |
Antonio Maiorano | f448d8e | 2019-04-26 16:19:16 -0400 | [diff] [blame] | 523 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-DENABLE_RR_EMIT_PRINT_LOCATION") |
| 524 | endif() |
| 525 | |
| 526 | if(REACTOR_EMIT_DEBUG_INFO) |
| 527 | message(WARNING "REACTOR_EMIT_DEBUG_INFO is enabled. This will likely affect performance.") |
| 528 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-DENABLE_RR_DEBUG_INFO") |
| 529 | endif() |
| 530 | |
Antonio Maiorano | 415d181 | 2020-02-11 16:22:55 -0500 | [diff] [blame] | 531 | if(REACTOR_ENABLE_PRINT) |
| 532 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-DENABLE_RR_PRINT") |
| 533 | endif() |
| 534 | |
Ben Clayton | 5375f47 | 2019-06-24 13:33:11 +0100 | [diff] [blame] | 535 | if(REACTOR_VERIFY_LLVM_IR) |
| 536 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-DENABLE_RR_LLVM_IR_VERIFICATION") |
| 537 | endif() |
| 538 | |
Antonio Maiorano | 062dc18 | 2019-12-09 11:52:31 -0500 | [diff] [blame] | 539 | if(REACTOR_DEFAULT_OPT_LEVEL) |
| 540 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-DREACTOR_DEFAULT_OPT_LEVEL=${REACTOR_DEFAULT_OPT_LEVEL}") |
| 541 | endif() |
| 542 | |
Nicolas Capens | bf8fd5b | 2018-06-21 00:42:00 -0400 | [diff] [blame] | 543 | if(WIN32) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 544 | add_definitions(-DWINVER=0x501 -DNOMINMAX -DSTRICT) |
Nicolas Capens | 6f42209 | 2015-12-23 15:12:45 -0500 | [diff] [blame] | 545 | set(CMAKE_FIND_LIBRARY_PREFIXES ${CMAKE_FIND_LIBRARY_PREFIXES} "" "lib") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 546 | endif() |
| 547 | |
Antonio Maiorano | 6102276 | 2020-03-30 11:11:16 -0400 | [diff] [blame] | 548 | set(USE_EXCEPTIONS |
| 549 | ${REACTOR_EMIT_DEBUG_INFO} # boost::stacktrace uses exceptions |
| 550 | ) |
| 551 | if(NOT MSVC) |
| 552 | if (${USE_EXCEPTIONS}) |
| 553 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-fexceptions") |
| 554 | else() |
| 555 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-fno-exceptions") |
| 556 | endif() |
| 557 | endif() |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 558 | unset(USE_EXCEPTIONS) |
Antonio Maiorano | 6102276 | 2020-03-30 11:11:16 -0400 | [diff] [blame] | 559 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 560 | ########################################################### |
Antonio Maiorano | fa8f48d | 2020-03-30 16:41:48 -0400 | [diff] [blame] | 561 | # libbacktrace and boost |
| 562 | ########################################################### |
| 563 | if(REACTOR_EMIT_DEBUG_INFO) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 564 | add_subdirectory(${THIRD_PARTY_DIR}/libbacktrace EXCLUDE_FROM_ALL) |
| 565 | add_subdirectory(${THIRD_PARTY_DIR}/boost EXCLUDE_FROM_ALL) |
Antonio Maiorano | fa8f48d | 2020-03-30 16:41:48 -0400 | [diff] [blame] | 566 | endif() |
| 567 | |
| 568 | ########################################################### |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 569 | # LLVM |
| 570 | ########################################################### |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 571 | add_subdirectory(${THIRD_PARTY_DIR}/llvm-${SWIFTSHADER_LLVM_VERSION} EXCLUDE_FROM_ALL) |
Ben Clayton | 8f71f73 | 2019-02-01 09:38:45 +0000 | [diff] [blame] | 572 | |
Antonio Maiorano | 4bde1c3 | 2020-03-27 15:01:53 -0400 | [diff] [blame] | 573 | ########################################################### |
| 574 | # Subzero |
| 575 | ########################################################### |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 576 | add_subdirectory(${THIRD_PARTY_DIR}/llvm-subzero EXCLUDE_FROM_ALL) |
| 577 | add_subdirectory(${THIRD_PARTY_DIR}/subzero EXCLUDE_FROM_ALL) |
Antonio Maiorano | 8bce067 | 2020-02-28 13:13:45 -0500 | [diff] [blame] | 578 | |
| 579 | ########################################################### |
| 580 | # marl |
| 581 | ########################################################### |
| 582 | if(BUILD_MARL) |
| 583 | set(MARL_THIRD_PARTY_DIR ${THIRD_PARTY_DIR}) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 584 | add_subdirectory(${THIRD_PARTY_DIR}/marl) |
Antonio Maiorano | 8bce067 | 2020-02-28 13:13:45 -0500 | [diff] [blame] | 585 | endif() |
| 586 | |
Ben Clayton | 377573c | 2020-04-03 20:36:40 +0100 | [diff] [blame] | 587 | if(MARL_THREAD_SAFETY_ANALYSIS_SUPPORTED) |
| 588 | list(APPEND SWIFTSHADER_COMPILE_OPTIONS "-Wthread-safety") |
| 589 | endif() |
| 590 | |
Antonio Maiorano | 8bce067 | 2020-02-28 13:13:45 -0500 | [diff] [blame] | 591 | ########################################################### |
| 592 | # cppdap |
| 593 | ########################################################### |
| 594 | if(SWIFTSHADER_BUILD_CPPDAP) |
| 595 | set(CPPDAP_THIRD_PARTY_DIR ${THIRD_PARTY_DIR}) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 596 | add_subdirectory(${THIRD_PARTY_DIR}/cppdap) |
Antonio Maiorano | 8bce067 | 2020-02-28 13:13:45 -0500 | [diff] [blame] | 597 | endif() |
| 598 | |
Antonio Maiorano | b02a708 | 2020-03-30 21:55:20 -0400 | [diff] [blame] | 599 | ########################################################### |
| 600 | # astc-encoder |
| 601 | ########################################################### |
| 602 | if(SWIFTSHADER_ENABLE_ASTC) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 603 | add_subdirectory(${THIRD_PARTY_DIR}/astc-encoder) |
Antonio Maiorano | b02a708 | 2020-03-30 21:55:20 -0400 | [diff] [blame] | 604 | endif() |
Nicolas Capens | 19291ef | 2017-01-09 13:35:14 -0500 | [diff] [blame] | 605 | |
Nicolas Capens | f53adbd | 2017-01-06 12:47:46 -0500 | [diff] [blame] | 606 | ########################################################### |
Antonio Maiorano | 8f02f58 | 2020-03-31 11:01:43 -0400 | [diff] [blame] | 607 | # gtest and gmock |
| 608 | ########################################################### |
| 609 | if(SWIFTSHADER_BUILD_TESTS) |
| 610 | # For Win32, force gtest to match our CRT (shared) |
| 611 | set(gtest_force_shared_crt TRUE CACHE BOOL "" FORCE) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 612 | add_subdirectory(${THIRD_PARTY_DIR}/googletest EXCLUDE_FROM_ALL) |
Antonio Maiorano | 8f02f58 | 2020-03-31 11:01:43 -0400 | [diff] [blame] | 613 | # gtest finds python, which picks python 2 first, if present. |
| 614 | # We need to undo this so that SPIR-V can later find python3. |
| 615 | unset(PYTHON_EXECUTABLE CACHE) |
| 616 | endif() |
| 617 | |
| 618 | ########################################################### |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 619 | # File Lists |
| 620 | ########################################################### |
| 621 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 622 | ########################################################### |
| 623 | # Append OS specific files to lists |
| 624 | ########################################################### |
| 625 | |
| 626 | if(WIN32) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 627 | set(OS_LIBS odbc32 odbccp32 WS2_32 dxguid) |
| 628 | elseif(LINUX) |
Nicolas Capens | 681d97b | 2016-05-17 16:02:32 -0400 | [diff] [blame] | 629 | set(OS_LIBS dl pthread) |
David 'Digit' Turner | d371793 | 2019-11-19 17:54:00 +0100 | [diff] [blame] | 630 | elseif(FUCHSIA) |
| 631 | set(OS_LIBS zircon) |
Corentin Wallez | cd0a457 | 2015-12-10 15:59:28 -0500 | [diff] [blame] | 632 | elseif(APPLE) |
| 633 | find_library(COCOA_FRAMEWORK Cocoa) |
| 634 | find_library(QUARTZ_FRAMEWORK Quartz) |
Alexis Hetu | d23cf63 | 2018-04-10 10:48:42 -0400 | [diff] [blame] | 635 | find_library(CORE_FOUNDATION_FRAMEWORK CoreFoundation) |
| 636 | find_library(IOSURFACE_FRAMEWORK IOSurface) |
Corentin Wallez | cb58662 | 2020-03-27 17:38:29 +0100 | [diff] [blame] | 637 | find_library(METAL_FRAMEWORK Metal) |
| 638 | set(OS_LIBS "${COCOA_FRAMEWORK}" "${QUARTZ_FRAMEWORK}" "${CORE_FOUNDATION_FRAMEWORK}" "${IOSURFACE_FRAMEWORK}" "${METAL_FRAMEWORK}") |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 639 | endif() |
| 640 | |
| 641 | ########################################################### |
Nicolas Capens | 5a105bc | 2015-12-22 22:04:28 -0500 | [diff] [blame] | 642 | # SwiftShader Targets |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 643 | ########################################################### |
| 644 | |
Antonio Maiorano | fa8f48d | 2020-03-30 16:41:48 -0400 | [diff] [blame] | 645 | add_subdirectory(src/Reactor) # Add ReactorSubzero and ReactorLLVM targets |
Nicolas Capens | e329f01 | 2020-03-13 14:54:21 +0000 | [diff] [blame] | 646 | |
Ben Clayton | b99bc1f | 2019-04-15 13:56:08 -0400 | [diff] [blame] | 647 | if(${REACTOR_BACKEND} STREQUAL "LLVM") |
Nicolas Capens | f53adbd | 2017-01-06 12:47:46 -0500 | [diff] [blame] | 648 | set(Reactor ReactorLLVM) |
| 649 | elseif(${REACTOR_BACKEND} STREQUAL "Subzero") |
| 650 | set(Reactor ReactorSubzero) |
| 651 | else() |
| 652 | message(FATAL_ERROR "REACTOR_BACKEND must be 'LLVM' or 'Subzero'") |
| 653 | endif() |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 654 | |
Antonio Maiorano | 4ce6a88 | 2020-04-06 16:16:21 -0400 | [diff] [blame] | 655 | add_subdirectory(src/Common) # Add gl_common target |
| 656 | add_subdirectory(src/Main) # Add gl_main target |
| 657 | add_subdirectory(src/Shader) # Add gl_shader target |
| 658 | add_subdirectory(src/Renderer) # Add gl_renderer target |
| 659 | |
| 660 | # Combine all gl_* targets into an interface target |
| 661 | # along with other dependencies |
| 662 | add_library(gl_swiftshader_core INTERFACE) |
| 663 | target_link_libraries(gl_swiftshader_core INTERFACE |
| 664 | # Transitively depends on shader, main, core, Reactor, |
| 665 | # OS_LIBS and SWIFTSHADER_LIBS |
| 666 | gl_renderer |
| 667 | ) |
| 668 | |
Antonio Maiorano | a71aff2 | 2020-04-07 10:09:41 -0400 | [diff] [blame] | 669 | add_subdirectory(src/OpenGL/common EXCLUDE_FROM_ALL) # Add libGLESCommon target |
| 670 | add_subdirectory(src/OpenGL/compiler EXCLUDE_FROM_ALL) # Add GLCompiler target |
Nicolas Capens | 6f42209 | 2015-12-23 15:12:45 -0500 | [diff] [blame] | 671 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 672 | if(SWIFTSHADER_BUILD_EGL) |
Antonio Maiorano | a71aff2 | 2020-04-07 10:09:41 -0400 | [diff] [blame] | 673 | add_subdirectory(src/OpenGL/libEGL) # Add libEGL target |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 674 | endif() |
| 675 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 676 | if(SWIFTSHADER_BUILD_GLESv2) |
Antonio Maiorano | a71aff2 | 2020-04-07 10:09:41 -0400 | [diff] [blame] | 677 | add_subdirectory(src/OpenGL/libGLESv2) # Add libGLESv2 target |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 678 | endif() |
| 679 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 680 | if(SWIFTSHADER_BUILD_GLES_CM) |
Antonio Maiorano | a71aff2 | 2020-04-07 10:09:41 -0400 | [diff] [blame] | 681 | add_subdirectory(src/OpenGL/libGLES_CM) # Add libGLES_CM target |
Ben Clayton | 1e8486b | 2020-01-22 17:01:52 +0000 | [diff] [blame] | 682 | endif(SWIFTSHADER_BUILD_GLES_CM) |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 683 | |
Sean Risser | f6d3cbb | 2020-01-08 14:44:53 -0500 | [diff] [blame] | 684 | if(SWIFTSHADER_BUILD_VULKAN) |
Dan Sinclair | 6480d4e | 2019-03-11 10:48:19 -0400 | [diff] [blame] | 685 | if (NOT TARGET SPIRV-Tools) |
| 686 | # This variable is also used by SPIRV-Tools to locate SPIRV-Headers |
Ben Clayton | afb4ebd | 2019-12-02 19:33:17 +0000 | [diff] [blame] | 687 | set(SPIRV-Headers_SOURCE_DIR "${THIRD_PARTY_DIR}/SPIRV-Headers") |
Antonio Maiorano | 8f02f58 | 2020-03-31 11:01:43 -0400 | [diff] [blame] | 688 | set(SPIRV_SKIP_TESTS TRUE CACHE BOOL "" FORCE) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 689 | add_subdirectory(${THIRD_PARTY_DIR}/SPIRV-Tools) # Add SPIRV-Tools target |
Ben Clayton | 1e8486b | 2020-01-22 17:01:52 +0000 | [diff] [blame] | 690 | endif() |
Nicolas Capens | 4c9f04b | 2019-01-31 22:09:03 -0500 | [diff] [blame] | 691 | |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 692 | # Add a vk_base interface library for shared vulkan build options. |
| 693 | # TODO: Create src/Base and make this a lib target, and move stuff from |
| 694 | # src/Vulkan into it that is needed by vk_pipeline, vk_device, and vk_wsi. |
| 695 | add_library(vk_base INTERFACE) |
Ben Clayton | 4cdbb54 | 2020-04-14 22:51:50 +0100 | [diff] [blame] | 696 | |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 697 | if(SWIFTSHADER_ENABLE_VULKAN_DEBUGGER) |
| 698 | target_compile_definitions(vk_base INTERFACE "ENABLE_VK_DEBUGGER") |
David 'Digit' Turner | d371793 | 2019-11-19 17:54:00 +0100 | [diff] [blame] | 699 | endif() |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 700 | |
Nicolas Capens | d354537 | 2019-08-09 13:59:18 -0400 | [diff] [blame] | 701 | if(WIN32) |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 702 | target_compile_definitions(vk_base INTERFACE "VK_USE_PLATFORM_WIN32_KHR") |
Nicolas Capens | d354537 | 2019-08-09 13:59:18 -0400 | [diff] [blame] | 703 | elseif(LINUX) |
Ben Clayton | a9af883 | 2019-08-14 13:09:43 +0100 | [diff] [blame] | 704 | if(X11) |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 705 | target_compile_definitions(vk_base INTERFACE "VK_USE_PLATFORM_XLIB_KHR") |
Ben Clayton | 1e8486b | 2020-01-22 17:01:52 +0000 | [diff] [blame] | 706 | endif() |
Ben Clayton | a9af883 | 2019-08-14 13:09:43 +0100 | [diff] [blame] | 707 | if(XCB) |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 708 | target_compile_definitions(vk_base INTERFACE "VK_USE_PLATFORM_XCB_KHR") |
Ben Clayton | 1e8486b | 2020-01-22 17:01:52 +0000 | [diff] [blame] | 709 | endif() |
Nicolas Capens | d354537 | 2019-08-09 13:59:18 -0400 | [diff] [blame] | 710 | elseif(APPLE) |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 711 | target_compile_definitions(vk_base INTERFACE "VK_USE_PLATFORM_MACOS_MVK") |
David 'Digit' Turner | d371793 | 2019-11-19 17:54:00 +0100 | [diff] [blame] | 712 | elseif(FUCHSIA) |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 713 | target_compile_definitions(vk_base INTERFACE "VK_USE_PLATFORM_FUCHSIA") |
Nicolas Capens | 29a9809 | 2019-04-03 14:35:10 -0400 | [diff] [blame] | 714 | else() |
| 715 | message(FATAL_ERROR "Platform does not support Vulkan yet") |
Nicolas Capens | d354537 | 2019-08-09 13:59:18 -0400 | [diff] [blame] | 716 | endif() |
| 717 | |
Antonio Maiorano | 9418b51 | 2020-04-08 23:18:13 -0400 | [diff] [blame] | 718 | add_subdirectory(src/System) # Add vk_system target |
| 719 | add_subdirectory(src/Pipeline) # Add vk_pipeline target |
| 720 | add_subdirectory(src/WSI) # Add vk_wsi target |
| 721 | add_subdirectory(src/Device) # Add vk_device target |
| 722 | add_subdirectory(src/Vulkan) # Add vk_swiftshader target |
Ben Clayton | ac73612 | 2020-03-24 17:48:31 +0000 | [diff] [blame] | 723 | |
Ben Clayton | 6ce626b | 2020-05-05 12:39:23 +0100 | [diff] [blame] | 724 | if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND # turbo-cov is only useful for clang coverage info |
| 725 | SWIFTSHADER_LLVM_VERSION EQUAL "10.0" AND # turbo-cov does not build with earlier llvm versions |
| 726 | SWIFTSHADER_EMIT_COVERAGE) |
Antonio Maiorano | 2430d66 | 2020-04-14 17:04:36 -0400 | [diff] [blame] | 727 | add_subdirectory(${TESTS_DIR}/regres/cov/turbo-cov) |
Ben Clayton | ac73612 | 2020-03-24 17:48:31 +0000 | [diff] [blame] | 728 | endif() |
| 729 | |
Nicolas Capens | 29a9809 | 2019-04-03 14:35:10 -0400 | [diff] [blame] | 730 | endif() |
Chris Forbes | 3d27f2e | 2018-09-26 09:24:39 -0700 | [diff] [blame] | 731 | |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 732 | ########################################################### |
Nicolas Capens | 29a9809 | 2019-04-03 14:35:10 -0400 | [diff] [blame] | 733 | # Sample programs and tests |
Corentin Wallez | 0866b29 | 2015-12-09 13:49:40 -0500 | [diff] [blame] | 734 | ########################################################### |
| 735 | |
Nicolas Capens | 13943ba | 2020-03-17 22:36:24 -0400 | [diff] [blame] | 736 | if(HAVE_PVR_SUBMODULE AND SWIFTSHADER_BUILD_PVR) |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 737 | if(UNIX AND NOT APPLE) |
| 738 | set(PVR_WINDOW_SYSTEM XCB) |
Nicolas Capens | 7e85709 | 2020-03-06 13:21:10 -0500 | [diff] [blame] | 739 | |
| 740 | # Set the RPATH of the next defined build targets to $ORIGIN, |
| 741 | # allowing them to load shared libraries from the execution directory. |
| 742 | set(CMAKE_BUILD_RPATH "$ORIGIN") |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 743 | endif() |
| 744 | |
Nicolas Capens | 13943ba | 2020-03-17 22:36:24 -0400 | [diff] [blame] | 745 | set(PVR_BUILD_EXAMPLES TRUE CACHE BOOL "Build the PowerVR SDK Examples" FORCE) |
Antonio Maiorano | da4315d | 2020-04-15 13:49:56 -0400 | [diff] [blame] | 746 | add_subdirectory(${THIRD_PARTY_DIR}/PowerVR_Examples) |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 747 | |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 748 | # Samples known to work well |
| 749 | set(PVR_VULKAN_TARGET_GOOD |
| 750 | VulkanBumpmap |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 751 | VulkanExampleUI |
| 752 | VulkanGaussianBlur |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 753 | VulkanGlass |
| 754 | VulkanGnomeHorde |
| 755 | VulkanHelloAPI |
| 756 | VulkanImageBasedLighting |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 757 | VulkanIntroducingPVRUtils |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 758 | VulkanMultiSampling |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 759 | VulkanNavigation2D |
| 760 | VulkanParticleSystem |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 761 | VulkanSkinning |
| 762 | ) |
| 763 | |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 764 | set(PVR_GLES_TARGET_GOOD |
| 765 | OpenGLESHelloAPI |
| 766 | OpenGLESIntroducingPVRUtils |
| 767 | OpenGLESNavigation2D |
| 768 | ) |
| 769 | |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 770 | set(PVR_VULKAN_TARGET_OTHER |
| 771 | VulkanDeferredShading |
| 772 | VulkanDeferredShadingPFX |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 773 | VulkanGameOfLife |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 774 | VulkanIBLMapsGenerator |
| 775 | VulkanIMGTextureFilterCubic |
| 776 | VulkanIntroducingPVRShell |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 777 | VulkanIntroducingPVRVk |
| 778 | VulkanIntroducingUIRenderer |
| 779 | VulkanMultithreading |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 780 | VulkanNavigation3D |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 781 | VulkanPostProcessing |
| 782 | VulkanPVRScopeExample |
| 783 | VulkanPVRScopeRemote |
| 784 | ) |
| 785 | |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 786 | set(PVR_GLES_TARGET_OTHER |
| 787 | OpenGLESDeferredShading |
| 788 | OpenGLESGaussianBlur |
| 789 | OpenGLESImageBasedLighting |
| 790 | OpenGLESIMGFramebufferDownsample |
| 791 | OpenGLESIMGTextureFilterCubic |
| 792 | OpenGLESIntroducingPVRCamera |
| 793 | OpenGLESIntroducingPVRShell |
| 794 | OpenGLESIntroducingUIRenderer |
| 795 | OpenGLESMultiviewVR |
| 796 | OpenGLESNavigation3D |
| 797 | OpenGLESOpenCLExample |
| 798 | OpenGLESParticleSystem |
| 799 | OpenGLESPostProcessing |
| 800 | OpenGLESPVRScopeExample |
| 801 | OpenGLESPVRScopeRemote |
| 802 | OpenGLESSkinning |
| 803 | ) |
| 804 | |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 805 | set(PVR_TARGET_OTHER |
| 806 | glslang |
| 807 | glslangValidator |
| 808 | glslang-default-resource-limits |
| 809 | OGLCompiler |
| 810 | OSDependent |
| 811 | OpenCLMatrixMultiplication |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 812 | pugixml |
| 813 | PVRAssets |
| 814 | PVRCamera |
| 815 | PVRCore |
| 816 | PVRPfx |
| 817 | PVRShell |
| 818 | PVRUtilsGles |
| 819 | PVRUtilsVk |
| 820 | PVRVk |
| 821 | SPIRV |
| 822 | spirv-remap |
| 823 | SPVRemapper |
| 824 | uninstall |
| 825 | ) |
| 826 | |
| 827 | set(PVR_VULKAN_TARGET |
| 828 | ${PVR_VULKAN_TARGET_GOOD} |
| 829 | ${PVR_VULKAN_TARGET_OTHER} |
| 830 | ) |
| 831 | |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 832 | set(PVR_GLES_TARGET |
| 833 | ${PVR_GLES_TARGET_GOOD} |
| 834 | ${PVR_GLES_TARGET_OTHER} |
| 835 | ) |
| 836 | |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 837 | foreach(pvr_target ${PVR_VULKAN_TARGET}) |
| 838 | add_dependencies(${pvr_target} vk_swiftshader) |
| 839 | endforeach() |
| 840 | |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 841 | foreach(pvr_target ${PVR_GLES_TARGET}) |
| 842 | add_dependencies(${pvr_target} libGLESv2) |
| 843 | add_dependencies(${pvr_target} libEGL) |
| 844 | endforeach() |
| 845 | |
| 846 | foreach(pvr_target ${PVR_VULKAN_TARGET_GOOD} ${PVR_GLES_TARGET_GOOD}) |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 847 | set_target_properties(${pvr_target} PROPERTIES FOLDER Samples) |
| 848 | endforeach() |
| 849 | |
Nicolas Capens | 3702e01 | 2020-03-30 09:08:47 -0400 | [diff] [blame] | 850 | foreach(pvr_target ${PVR_TARGET_OTHER} ${PVR_VULKAN_TARGET_OTHER} ${PVR_GLES_TARGET_OTHER}) |
Nicolas Capens | 51b2800 | 2020-01-30 16:41:00 -0500 | [diff] [blame] | 851 | set_target_properties(${pvr_target} PROPERTIES FOLDER Samples/PowerVR-Build) |
| 852 | endforeach() |
Corentin Wallez | cb58662 | 2020-03-27 17:38:29 +0100 | [diff] [blame] | 853 | endif() |
Nicolas Capens | f324fe5 | 2020-06-05 16:10:07 -0400 | [diff] [blame] | 854 | |
| 855 | if(SWIFTSHADER_BUILD_TESTS) |
| 856 | add_subdirectory(${TESTS_DIR}/ReactorUnitTests) # Add ReactorUnitTests target |
| 857 | add_subdirectory(${TESTS_DIR}/GLESUnitTests) # Add gles-unittests target |
| 858 | add_subdirectory(${TESTS_DIR}/MathUnitTests) # Add math-unittests target |
| 859 | add_subdirectory(${TESTS_DIR}/SystemUnitTests) # Add system-unittests target |
| 860 | endif() |
| 861 | |
| 862 | if(SWIFTSHADER_BUILD_BENCHMARKS) |
| 863 | if (NOT TARGET benchmark::benchmark) |
| 864 | set(BENCHMARK_ENABLE_TESTING FALSE CACHE BOOL FALSE FORCE) |
| 865 | add_subdirectory(${THIRD_PARTY_DIR}/benchmark) |
| 866 | endif() |
| 867 | |
Nicolas Capens | aca9fb2 | 2020-06-10 12:53:31 -0400 | [diff] [blame] | 868 | if (NOT TARGET glslang) |
| 869 | add_subdirectory(${THIRD_PARTY_DIR}/glslang) |
| 870 | endif() |
| 871 | |
Nicolas Capens | f324fe5 | 2020-06-05 16:10:07 -0400 | [diff] [blame] | 872 | add_subdirectory(${TESTS_DIR}/ReactorBenchmarks) # Add ReactorBenchmarks target |
| 873 | add_subdirectory(${TESTS_DIR}/SystemBenchmarks) # Add system-benchmarks target |
| 874 | add_subdirectory(${TESTS_DIR}/VulkanBenchmarks) # Add VulkanBenchmarks target |
| 875 | endif() |
| 876 | |
| 877 | if(SWIFTSHADER_BUILD_TESTS AND SWIFTSHADER_BUILD_VULKAN) |
| 878 | add_subdirectory(${TESTS_DIR}/VulkanUnitTests) # Add VulkanUnitTests target |
| 879 | endif() |