Browse Source

Updated to work with A46.

Steve Thielemann 4 years ago
parent
commit
1c3062a80e
2 changed files with 4 additions and 3 deletions
  1. 2 1
      CMakeLists.txt
  2. 2 2
      hharry.cpp

+ 2 - 1
CMakeLists.txt

@@ -33,9 +33,10 @@ ENDIF(GIT_FOUND)
 
 ## https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
 ## During Debug, use debug version of libstdc++ (asserts on access to invalid iterators, etc!)
-set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_GLIBCXX_DEBUG")
+set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_GLIBCXX_DEBUG -fsanitize=address -fsanitize=leak -fsanitize=undefined -fsanitize=shift-base -fsanitize=unreachable -fsanitize=null -fsanitize=return -fsanitize=bounds-strict -fsanitize=object-size")
 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
 
+
 ###########
 # Suppress certain warnings
 ###########

+ 2 - 2
hharry.cpp

@@ -352,9 +352,9 @@ int main(int argc, char *argv[]) {
       node = atoi(argv[x] + 3) + 1;
     }
     */
-    // -TID7, -TID9, -TID11 for node 1, 2, 3
+    // -TID8, -TID10, -TID12 for node 1, 2, 3
     if (strncmp("-TID", argv[x], 4) == 0) {
-      node = (atoi(argv[x] + 4) - 5) / 2;
+      node = (atoi(argv[x] + 4) - 6) / 2;
     }
   }