Open GoogleCodeExporter opened 9 years ago
Could you post your /usr/local/arm-apple-darwin/include/stdint.h ?
Original comment by nightwat...@gmail.com
on 28 Sep 2007 at 12:59
/usr/local/arm-apple-darwin/include/stdint.h contains just 1 line:
----
gcc/darwin/default/stdint.h
----
Original comment by julian.r...@gmail.com
on 29 Sep 2007 at 7:56
Attachments:
The attached stdint.h in the previous comment corresponds to:
/usr/local/arm-apple-darwin/include/gcc/darwin/4.0/stdint.h
I have these stdint.h under /usr/local/arm-apple-darwin
$ find . -name stdint.h
./include/gcc/darwin/3.3/stdint.h
./include/gcc/darwin/4.0/stdint.h
./include/stdint.h
Original comment by julian.r...@gmail.com
on 29 Sep 2007 at 7:59
After svn update the error now is:
../../../llvm-gcc-4.0-iphone/gcc/llvm-backend.cpp: In function ‘void
llvm_initialize_backend()’:
../../../llvm-gcc-4.0-iphone/gcc/llvm-backend.cpp:191: error:
‘createBFS_DAGScheduler’ was not declared in this scope
../../../llvm-gcc-4.0-iphone/gcc/llvm-backend.cpp: In function ‘void
emit_global_to_llvm(tree_node*)’:
../../../llvm-gcc-4.0-iphone/gcc/llvm-backend.cpp:862: warning: comparison
between
signed and unsigned integer expressions
make[1]: *** [llvm-backend.o] Error 1
make[1]: Leaving directory
`/usr/local/src/iphone-toolchain-1/iphone-dev/build/llvm-gcc-4.0-iphone/gcc'
make: *** [all-gcc] Error 2
Original comment by julian.r...@gmail.com
on 3 Oct 2007 at 7:40
(answering comment 4)
this is known: http://code.google.com/p/iphone-dev/issues/detail?id=70
Original comment by onit...@gmail.com
on 9 Oct 2007 at 4:03
this os duplicate of issue 31. I have fix.
Original comment by NekoCo...@gmail.com
on 26 Oct 2007 at 5:42
I am doing this on Windows/Cygwin and I got the exact same problem (as the
original
post). I think it is related to bad symlinks. I'm not sure about anything so
I may
be wrong. I described my situation on the iPhone dev wiki:
http://iphone.fiveforty.net/wiki/index.php/Talk:Toolchain_installation_-_Windows
.
Original comment by ViaJ...@gmail.com
on 29 Oct 2007 at 4:39
I have this exact same issue on ubuntu gutsy (7.10). I'm using the 32bit
version on a
Q6600 with gcc 4.1.3.
Original comment by penj...@gmail.com
on 10 Nov 2007 at 4:58
Same problem on Slackware 12 (32 bits).
Original comment by walrick....@gmail.com
on 30 Mar 2008 at 4:17
I have experienced the same problem as original post when trying to build on
Ubuntu
Gutsy 7.10 also. What is workaround?
Original comment by feilimb
on 5 Apr 2008 at 9:55
The stdint.h file in /usr/local/arm-apple-darwin/include should actually be a
symlink
to /usr/local/arm-apple-darwin/include/gcc/darwin/default/stdint.h. This is
caused
by bad symlinks in the MacOSX10.4u.sdk folder.
I got this issue after copying the MacOSX10.4u.sdk folder off a Mac onto my
Ubuntu
box. All of the symlinks in the folder turned into files rather than links.
To fix the issue you need to copy the sdk folder while preserving the links and
then
do the install-headers step in the install guide again.
Original comment by max.e.st...@gmail.com
on 17 May 2008 at 11:45
I wrote a simple bash script to fix the problem:
software.jenandzu.com/fixlinks
Simply download it,
$ chmod a+x fixlinks
then
$ fixlinks MacOSX10.4u.sdk
(or fixlinks MacOSX10.4u.sdk > /dev/null if you hate to see the long list).
Then, you will have to:
$ rm -rf /usr/local/arm-apple-darwin/include
and re-run install-headers.sh in th include directory to fix previously
installed
header files
It worked for me -- at least everything was compiled..
Original comment by zuw...@gmail.com
on 12 Jan 2009 at 6:06
Thanks zuwhan! That was a /huge/ help. Now I'm stuck a little further down
the road.
The buffer overflow.
Original comment by sudo.adam.carruthers@gmail.com
on 24 Dec 2009 at 11:55
Original issue reported on code.google.com by
julian.r...@gmail.com
on 27 Sep 2007 at 10:18