mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:22:44 +00:00 
			
		
		
		
	 ae67cabe11
			
		
	
	
		ae67cabe11
		
	
	
	
	
		
			
			Previously, libc.a contained undefined symbols from ssp and libsystem, which caused static compilation to fail. We now generate libc.a with a custom CMake rule that combines all object files from libc, ssp and libsystem to form libc.a Closes #5758.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     syscall.cpp
 | |
| )
 | |
| 
 | |
| set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdlib")
 | |
| serenity_libc(LibSystem system)
 | |
| target_include_directories(LibSystem PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
 | |
| 
 | |
| add_library(LibSystemStatic STATIC ${SOURCES})
 | |
| target_include_directories(LibSystemStatic PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
 |