mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-28 08:31:25 +00:00 
			
		
		
		
	 c37fb4cf62
			
		
	
	c37fb4cf62
	
	
	
		
			
			* Update cmakepreset.json to use clang with ninja by default * Update cmakepreset.json to add clang and ninja based configs * Updates to build.md file * Make updates to rename preset targets * Update with .cmake file * Remove additional whitespaces * Add .cmake file for x64-windows-llvm * Update docs/build.md * Update docs/build.md --------- Co-authored-by: Max Krasnyansky <max.krasnyansky@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			270 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			270 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set( CMAKE_SYSTEM_NAME Windows )
 | |
| set( CMAKE_SYSTEM_PROCESSOR x86_64 )
 | |
| 
 | |
| set( CMAKE_C_COMPILER    clang )
 | |
| set( CMAKE_CXX_COMPILER  clang++ )
 | |
| 
 | |
| set( arch_c_flags "-march=native" )
 | |
| 
 | |
| set( CMAKE_C_FLAGS_INIT   "${arch_c_flags}" )
 | |
| set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags}" )
 | |
| 
 |