| 
									
										
										
										
											2020-12-19 14:50:20 +01:00
										 |  |  | def can_build(env, platform): | 
					
						
							| 
									
										
										
										
											2021-05-04 11:07:12 +02:00
										 |  |  |     if not env["tools"]: | 
					
						
							|  |  |  |         return False | 
					
						
							| 
									
										
										
										
											2021-02-23 13:48:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-20 12:49:33 +02:00
										 |  |  |     # Depends on Embree library, which only supports x86_64 and aarch64. | 
					
						
							| 
									
										
										
										
											2021-05-05 18:01:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 11:07:12 +02:00
										 |  |  |     if platform == "android": | 
					
						
							| 
									
										
										
										
											2021-05-05 18:01:39 +02:00
										 |  |  |         return env["android_arch"] in ["arm64v8", "x86_64"] | 
					
						
							| 
									
										
										
										
											2021-02-23 13:48:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 11:07:12 +02:00
										 |  |  |     if platform in ["javascript", "server"]: | 
					
						
							|  |  |  |         return False | 
					
						
							| 
									
										
										
										
											2021-02-23 13:48:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 18:01:39 +02:00
										 |  |  |     if env["bits"] == "32": | 
					
						
							|  |  |  |         return False | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 11:07:12 +02:00
										 |  |  |     return True | 
					
						
							| 
									
										
										
										
											2020-12-19 14:50:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def configure(env): | 
					
						
							|  |  |  |     pass |