Search results

  1. K

    Can't find crt0.o

    okey, thanks for all your help, I'm using the sdl-config script as 'sdl-config --static-libs' now :)
  2. K

    Can't find crt0.o

    I made some more looking around and I found this: http://developer.apple.com/qa/qa2001/qa1118.html guess I can't link stuff statically, any idea on how to ensure compability any other way?
  3. K

    Can't find crt0.o

    Hi, when I try to compile (using apples gcc) a sdl program (also including the cocoa framework along with sdlmain to be able to run it nativ in OS X) and link it statically to be able to run it on my other computers that hasn't got the sdl library installed I get the following error: ld...
  4. K

    Problems with the ncurses library...

    got the files again now, but I still can't get it to run :(
  5. K

    Problems with the ncurses library...

    I can't find the file anymore.... did delite on the both others and now I can't find the orginal file... even did a find on them...
  6. K

    Problems with the ncurses library...

    Native Build of Target "testncurses" CompileC build/testncurses.build/testncurses.build/Objects-normal/ppc/main.o main.c normal ppc c com.apple.compilers.gcc.3_3 cd /Users/jol/testncurses /usr/bin/gcc-3.3 -x c -arch ppc -pipe -Wno-trigraphs -fasm-blocks -fpascal-strings -g -O0...
  7. K

    Problems with the ncurses library...

    if I compile it with xcode I get that message with the zerolink and aborted but if I compile it using gcc main.c -o test -ansi -pedantic -Wall -l ncurses it works fine.... what am I doing wrong when I try to do it with xcode?
  8. K

    Problems with the ncurses library...

    I managed to add ncurses.dylib now both in sources and framework & libarys but the same thing still happens :(
  9. K

    Problems with the ncurses library...

    should I add it like an include? since if I do it goes on forever when I try to compile it....
  10. K

    Problems with the ncurses library...

    Sorry for the title, couldn't think of a better one, anyway my problem is that when I run this program : #include <stdio.h> #include <ncurses.h> #include <time.h> #include <string.h> #include <stdlib.h> int main (void) { initscr (); endwin (); return 0; } I this happens...
Back
Top