mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-30 05:42:37 +00:00 
			
		
		
		
	LibJS: Don't try to use backtrace(3) on Android below API level 33
This commit is contained in:
		
							parent
							
								
									f8799885de
								
							
						
					
					
						commit
						26e5c20cfa
					
				
					 1 changed files with 4 additions and 0 deletions
				
			
		|  | @ -17,6 +17,10 @@ | ||||||
| #    define EXECINFO_BACKTRACE | #    define EXECINFO_BACKTRACE | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
|  | #if defined(AK_OS_ANDROID) && (__ANDROID_API__ < 33) | ||||||
|  | #    undef EXECINFO_BACKTRACE | ||||||
|  | #endif | ||||||
|  | 
 | ||||||
| namespace JS::JIT { | namespace JS::JIT { | ||||||
| 
 | 
 | ||||||
| NativeExecutable::NativeExecutable(void* code, size_t size, Vector<BytecodeMapping> mapping) | NativeExecutable::NativeExecutable(void* code, size_t size, Vector<BytecodeMapping> mapping) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andrew Kaster
						Andrew Kaster