Changes between Version 111 and Version 112 of FAQ


Ignore:
Timestamp:
Aug 16, 2011 2:55:20 AM (13 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v111 v112  
    172172 
    173173Please check the [wiki:Getting-Started Getting Started] page, in particular with setting paths of DirectX SDK. 
     174 
     175=== I'm getting "*** missing separator.  Stop." error when running make === #missing-sep-err 
     176 
     177If `make` stops when processing one of the dependency file (the `.depend` file) with '''missing separator''' error similar to this: 
     178 
     179{{{ 
     180    .pjlib-arm-apple-darwin9.depend:1: *** missing separator.  Stop. 
     181    make: *** [pjlib] Error 2 
     182}}} 
     183 
     184This happens because of corrupt dependency file, probably because `make dep` stopped or was stopped abruptly previously. The solution is either to delete the offending file manually or to run '''`make distclean`''' to clean everything. Either case, you'd have to run `make dep` again to rebuild the dependency. 
     185 
    174186 
    175187=== How do I build the libraries as Dynamic Link Library (DLL)? === #dll