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:
authorGaurav Khanna <gkhanna@microsoft.com>2015-10-29 19:38:09 +0300
committerGaurav Khanna <gkhanna@microsoft.com>2015-10-29 19:38:09 +0300
commitef474924f5f5e013fe85161e3c20dcc520ddbb1e (patch)
tree104d16206f7fce07387e368ef285923a38fdaa46 /src/Native/CMakeLists.txt
parent3861cac9943d3ffb9862357e3f443420696bd639 (diff)
Fix Issue 149 - Disable warnings about unused typedefs
Diffstat (limited to 'src/Native/CMakeLists.txt')
-rw-r--r--src/Native/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Native/CMakeLists.txt b/src/Native/CMakeLists.txt
index 2a2311345..4098159eb 100644
--- a/src/Native/CMakeLists.txt
+++ b/src/Native/CMakeLists.txt
@@ -66,6 +66,7 @@ if (CLR_CMAKE_PLATFORM_UNIX)
add_compile_options(-Wno-null-conversion)
add_compile_options(-Wno-invalid-offsetof)
add_compile_options(-Wno-null-arithmetic)
+ add_compile_options(-Wno-unused-local-typedef)
# The -fms-extensions enable the stuff like __if_exists, __declspec(uuid()), etc.
add_compile_options(-fms-extensions )