File: add-debug-flag.patch

package info (click to toggle)
assembly-stats 1.0.1%2Bds-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 280 kB
  • sloc: cpp: 799; sh: 31; makefile: 9
file content (15 lines) | stat: -rw-r--r-- 569 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Do not take address of rvalue, rather simply append value into ostringstream and convert to string with str()
Author: Nilesh Patra <nilesh@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=997122
Last-Update: 2021-10-31
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
 cmake_minimum_required (VERSION 2.6)
 project (assembly-stats)
 
-set (CMAKE_CXX_FLAGS "-Wall -O3 -pthread")
+set (CMAKE_CXX_FLAGS "-Wall -g -O3 -pthread")
 
 file(COPY test_files DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
 #add_subdirectory(gtest-1.7.0)