-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: fruffy <[email protected]>
- Loading branch information
Showing
7 changed files
with
110 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index ba3ec7bce..7ca1894fd 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -446,13 +446,13 @@ configure_file( | ||
|
||
# Target needs to be declared before the components so that they can add | ||
# dependencies to this target so they can run their own custom uninstall rules. | ||
-add_custom_target(uninstall | ||
- COMMAND | ||
- "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | ||
- COMMENT "Uninstalling..." | ||
- USES_TERMINAL | ||
- VERBATIM | ||
-) | ||
+# add_custom_target(uninstall | ||
+# COMMAND | ||
+# "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | ||
+# COMMENT "Uninstalling..." | ||
+# USES_TERMINAL | ||
+# VERBATIM | ||
+# ) | ||
|
||
################################################################################ | ||
# CMake build file locations | ||
diff --git a/src/util/memory_manager.cpp b/src/util/memory_manager.cpp | ||
index 290881ba5..a3db94d7a 100644 | ||
--- a/src/util/memory_manager.cpp | ||
+++ b/src/util/memory_manager.cpp | ||
@@ -29,6 +29,8 @@ Copyright (c) 2015 Microsoft Corporation | ||
# define malloc_usable_size _msize | ||
#endif | ||
|
||
+#undef HAS_MALLOC_USABLE_SIZE | ||
+ | ||
// The following two function are automatically generated by the mk_make.py script. | ||
// The script collects ADD_INITIALIZER and ADD_FINALIZER commands in the .h files. | ||
// For example, rational.h contains |