yetist / ios-toolchain-based-on-clang-for-linux

Automatically exported from code.google.com/p/ios-toolchain-based-on-clang-for-linux
0 stars 0 forks source link

'stdarg.h' file not found #24

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.use cmd ios-createProject
2.choose no.7, Example Player
3.then use cmd 'make', it will generate an error,as below:
output: 'stdarg.h' file not found

What is the expected output? What do you see instead?

output: 'stdarg.h' file not found

What version of the product are you using? On what operating system?
Ubuntu 13.10 64 bit desktop version

Please provide any additional information below.
I use the vmware 10.

I do't know if there had something wrong?

Thank you

Original issue reported on code.google.com by negy.li...@gmail.com on 19 Oct 2013 at 6:23

GoogleCodeExporter commented 9 years ago
Hi! Look at issue 19. I've found a workaround.
Also i confirm working this toolchain under Ubuntu 13.10 (Prebuilt binaries for 
13.04).

Original comment by djd...@gmail.com on 19 Oct 2013 at 8:16

GoogleCodeExporter commented 9 years ago
Thank you!

But I get another error:
/usr/bin/arm-apple-darwin11-ld: error while loading shared libraries: libLTO.so

Does my path set wrong?

Original comment by negy.li...@gmail.com on 20 Oct 2013 at 6:32

GoogleCodeExporter commented 9 years ago
Find libLTO.so then export its path (you can use dlocate on Ubuntu to find that 
file - dlocate libLTO.so)

An example would be:

export LD_LIBRARY_PATH="path_to_libLTO.so:$LD_LIBRARY_PATH"

If you want this to be persist, then add it to your ~/.profile .

Original comment by t.poecht...@gmail.com on 5 Nov 2013 at 8:12