mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:02:43 +00:00 
			
		
		
		
	 f40ee1b03f
			
		
	
	
		f40ee1b03f
		
	
	
	
	
		
			
			This implements more of the dlfcn functionality. Most notably: * It's now possible to dlopen() libraries which were already loaded at program startup time. This does not cause those libraries to be loaded twice. * Errors are reported via dlerror() rather than by crashing the program. * Calls to the dl*() functions are thread-safe.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			87 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			87 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     dlfcn.cpp
 | |
| )
 | |
| 
 | |
| serenity_libc(LibDl dl)
 | |
| target_link_libraries(LibDl LibC)
 |