Error Messages When Using the OpenGL ES Template

I created a new OpenGL ES application and without changing anything, I launched the program. It works, but I see these error messages:

Detected an attempt to call a symbol in system libraries that is not present on the iPhone:
open$UNIX2003 called from function _ZN4llvm12MemoryBuffer7getFileEPKcPSsx in image libLLVMContainer.dylib.
Detected an attempt to call a symbol in system libraries that is not present on the iPhone:
fstat$INODE64 called from function _ZN4llvm12MemoryBuffer7getFileEPKcPSsx in image libLLVMContainer.dylib.
Detected an attempt to call a symbol in system libraries that is not present on the iPhone:
mmap$UNIX2003 called from function _ZN4llvm3sys4Path14MapInFilePagesEiy in image libLLVMContainer.dylib.
Detected an attempt to call a symbol in system libraries that is not present on the iPhone:
close$UNIX2003 called from function _ZN4llvm12MemoryBuffer7getFileEPKcPSsx in image libLLVMContainer.dylib.
Detected an attempt to call a symbol in system libraries that is not present on the iPhone:
pthread_mutexattr_destroy$UNIX2003 called from function _ZN4llvm3sys5MutexC2Eb in image libLLVMContainer.dylib.

The program displays a colored field that moves up and down. Is that what he was supposed to do? What do these error messages mean?

+3
source share
1 answer

I noticed the same thing. I am running iOS sdk 4.1. But this only happens on the simulator.

From what I found on apple forums, this seems to be a simulator error. An Apple spokesman said that it was a mistake at the "their" end.

" , - , ".

+3

Source: https://habr.com/ru/post/1768630/


All Articles