TOC | PREV | NEXT

Problem: You try and compile and you get the error:
      Make: /NextDeveloper/Makefiles/project/common.make: Must be a separator on line 35. Stop.

Solution: You should be using gnumake not make, so in your Preferences of PB, miscellaneous, set the BUILDTOOL to /bin/gnumake. Also, if you see this line in PB.project:

            NEXTSTEP_BUILDTOOL = /bin/make;

      change it to be this line:
      
       NEXTSTEP_BUILDTOOL = /bin/gnumake;


Problem:
warning says: VOID VALUE NOT IGNORED AS IT SHOULD
       Old code:
       id g = [components removeLastObject]
Solution: New Code:
      id g = [[components lastObject] retain];
      [components removeLastObject];


Problem:
Thousands and thousands of warnings and errors
Solution:
Remember to change the linking framework to stageN!
      This bit me several times, so don't forget to do it!
      
      

TOC | PREV | NEXT
Match: Format:
Search:
Created by Stone Design's Create on 6/2/1997