Merge pull request #14 from amin-jabri/tsan_osx
Reenable TSan on macOS as newer Xcode toolchains support it.
This commit is contained in:
		
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					# out-of-source build top-level folders.
 | 
				
			||||||
 | 
					build/
 | 
				
			||||||
 | 
					_build/
 | 
				
			||||||
@@ -39,9 +39,10 @@ endif ()
 | 
				
			|||||||
include(sanitize-helpers)
 | 
					include(sanitize-helpers)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if (SANITIZE_THREAD)
 | 
					if (SANITIZE_THREAD)
 | 
				
			||||||
    if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
 | 
					  if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND
 | 
				
			||||||
 | 
					      NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
 | 
				
			||||||
        message(WARNING "ThreadSanitizer disabled for target ${TARGET} because "
 | 
					        message(WARNING "ThreadSanitizer disabled for target ${TARGET} because "
 | 
				
			||||||
            "ThreadSanitizer is supported for Linux systems only.")
 | 
					          "ThreadSanitizer is supported for Linux systems and macOS only.")
 | 
				
			||||||
        set(SANITIZE_THREAD Off CACHE BOOL
 | 
					        set(SANITIZE_THREAD Off CACHE BOOL
 | 
				
			||||||
            "Enable ThreadSanitizer for sanitized targets." FORCE)
 | 
					            "Enable ThreadSanitizer for sanitized targets." FORCE)
 | 
				
			||||||
    elseif (NOT ${CMAKE_SIZEOF_VOID_P} EQUAL 8)
 | 
					    elseif (NOT ${CMAKE_SIZEOF_VOID_P} EQUAL 8)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user