mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	 5659120af3
			
		
	
	
		5659120af3
		
			
		
	
	
	
	
		
			
			Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			275 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			275 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| def can_build(env, platform):
 | |
|     if env["arch"].startswith("rv"):
 | |
|         return False
 | |
|     return platform not in ["iphone"]
 | |
| 
 | |
| 
 | |
| def configure(env):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| def get_doc_classes():
 | |
|     return [
 | |
|         "VideoStreamWebm",
 | |
|     ]
 | |
| 
 | |
| 
 | |
| def get_doc_path():
 | |
|     return "doc_classes"
 |