mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:12:44 +00:00 
			
		
		
		
	 23bb276fcd
			
		
	
	
		23bb276fcd
		
	
	
	
	
		
			
			Cooperate with the compiler to generate and execute the _init_array list of constructor functions on userspace program statup. This took two days to get working, my goodness. :^)
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| mkdir -p ../Root/usr/include/sys/
 | |
| mkdir -p ../Root/usr/include/netinet/
 | |
| mkdir -p ../Root/usr/include/arpa/
 | |
| mkdir -p ../Root/usr/lib/
 | |
| cp *.h ../Root/usr/include/
 | |
| cp sys/*.h ../Root/usr/include/sys/
 | |
| cp arpa/*.h ../Root/usr/include/arpa/
 | |
| cp netinet/*.h ../Root/usr/include/netinet/
 | |
| cp libc.a ../Root/usr/lib/
 | |
| cp crt0.o ../Root/usr/lib/
 | |
| cp crti.ao ../Root/usr/lib/crti.o
 | |
| cp crtn.ao ../Root/usr/lib/crtn.o
 |