mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	 bbad4758b2
			
		
	
	
		bbad4758b2
		
	
	
	
	
		
			
			This adds just enough scaffolding to make cmake succeed. The build falls over immediately.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Nico Weber <thakis@chromium.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| .global setjmp
 | |
| setjmp:
 | |
|     # FIXME: Possibly incomplete.
 | |
|     ret
 | |
| 
 | |
| .global longjmp
 | |
| longjmp:
 | |
|     # FIXME: Possibly incomplete.
 | |
|     ret
 |