Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-10-31 03:57:48 +0300
committerJan Kotas <jkotas@microsoft.com>2015-10-31 03:57:48 +0300
commitf0debab59e46ef8afa44176456e6ead6ae242c37 (patch)
treeffc3e12b3171f6c66794be824ec9fa049f8a975f /src/Native/CMakeLists.txt
parent6a66096d766199646e45a9e1ce5f417914300287 (diff)
Fix build break on Mac
Diffstat (limited to 'src/Native/CMakeLists.txt')
-rw-r--r--src/Native/CMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/Native/CMakeLists.txt b/src/Native/CMakeLists.txt
index 1e35a7606..e2fcacc2f 100644
--- a/src/Native/CMakeLists.txt
+++ b/src/Native/CMakeLists.txt
@@ -69,11 +69,6 @@ if (CLR_CMAKE_PLATFORM_UNIX)
# Disable strict warning on unused functions.
add_compile_options(-Wno-unused-function)
- if(CMAKE_SYSTEM_NAME STREQUAL Darwin)
- # Apple Clang 7+ is strict about unused typedefs warnings by default.
- # To keep things consistent, flag the warning to be ignored.
- add_compile_options(-Wno-unused-local-typedef)
- endif(CMAKE_SYSTEM_NAME STREQUAL Darwin)
# The -fms-extensions enable the stuff like __if_exists, __declspec(uuid()), etc.
add_compile_options(-fms-extensions )