 061991fe60
			
		
	
	
		061991fe60
		
	
	
	
	
		
			
			it appears a one-character typo in the cmake_minimum_required line prevents it from compiling under CMake 4.0. in order to fix that, I had to take this thing out of submodules... it is recommended to do this after you pull; git submodule deinit extern/libsndfile
		
			
				
	
	
		
			14 lines
		
	
	
		
			302 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			302 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # This is known to work with clang-3.4 from Debian testing/unstable.
 | |
| # 2013/07/14
 | |
| 
 | |
| export CC=clang
 | |
| export CXX=clang++
 | |
| export CFLAGS="-O3 -fsanitize=address,integer,undefined"
 | |
| export CXXFLAGS="-O3 -fsanitize=address,integer,undefined"
 | |
| 
 | |
| ./configure --enable-gcc-werror
 | |
| 
 | |
| make clean all check
 |