diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-02-27 19:10:40 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-02-27 19:10:40 +0800 |
commit | 50915d2c2ed050c40db51988106ad46d61039d56 (patch) | |
tree | f78b30d8749abf9d6bf1ad01bfd8c855cb55c5a5 | |
parent | f1886b51bd86bd80a47c5b4aafc16039126315e8 (diff) | |
download | patches-50915d2c2ed050c40db51988106ad46d61039d56.tar patches-50915d2c2ed050c40db51988106ad46d61039d56.tar.gz |
build-system/cmake: Enable verbose output from Makefile builds.
* guix/build/cmake-build-system.scm (configure): Pass
-DCMAKE_VERBOSE_MAKEFILE=ON to cmake.
-rw-r--r-- | guix/build/cmake-build-system.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build/cmake-build-system.scm b/guix/build/cmake-build-system.scm index 07fd8df481..08ae73ef8d 100644 --- a/guix/build/cmake-build-system.scm +++ b/guix/build/cmake-build-system.scm @@ -57,6 +57,8 @@ "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE" ;; add (other) libraries of the project itself to rpath ,(string-append "-DCMAKE_INSTALL_RPATH=" out "/lib") + ;; enable verbose output from builds + "-DCMAKE_VERBOSE_MAKEFILE=ON" ,@configure-flags))) (setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH")) (setenv "CMAKE_INCLUDE_PATH" (getenv "CPATH")) |