aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindLibunwind.cmake
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-03-21 10:12:12 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-03-21 10:12:23 +0000
commitf7301c3563e7ae19b8d7c65d8bc88f3c42eefc09 (patch)
tree18d3ab32dfd303b6256c0571cfd9d893db858531 /cmake/FindLibunwind.cmake
parentMerge pull request #738 (diff)
downloadmonero-f7301c3563e7ae19b8d7c65d8bc88f3c42eefc09.tar.xz
Revert "Print stack trace upon exceptions"
Ain't nobody got time for link/cmake skullduggery. This reverts commit fff238ec94ac6d45fc18c315d7bc590ddfaad63d.
Diffstat (limited to '')
-rw-r--r--cmake/FindLibunwind.cmake25
1 files changed, 0 insertions, 25 deletions
diff --git a/cmake/FindLibunwind.cmake b/cmake/FindLibunwind.cmake
deleted file mode 100644
index 9946e7cdd..000000000
--- a/cmake/FindLibunwind.cmake
+++ /dev/null
@@ -1,25 +0,0 @@
-# - Try to find libunwind
-# Once done this will define
-#
-# LIBUNWIND_FOUND - system has libunwind
-# LIBUNWIND_INCLUDE_DIR - the libunwind include directory
-# LIBUNWIND_LIBRARIES - Link these to use libunwind
-# LIBUNWIND_DEFINITIONS - Compiler switches required for using libunwind
-
-# Copyright (c) 2006, Alexander Dymo, <adymo@kdevelop.org>
-#
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-
-find_path(LIBUNWIND_INCLUDE_DIR libunwind.h
- /usr/include
- /usr/local/include
-)
-
-find_library(LIBUNWIND_LIBRARIES NAMES unwind )
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Libunwind "Could not find libunwind" LIBUNWIND_INCLUDE_DIR LIBUNWIND_LIBRARIES)
-# show the LIBUNWIND_INCLUDE_DIR and LIBUNWIND_LIBRARIES variables only in the advanced view
-mark_as_advanced(LIBUNWIND_INCLUDE_DIR LIBUNWIND_LIBRARIES )
-