Quote Originally Posted by Kapil
a strange thing is happening.. when i am trying to run make sub-src, its taking too much of memory... and saying that no memory left on device.. i had more than 250 MB free for this purpose and strangely all of it is consumed while compiling.. this is strange.. never happened before when i used just "make".. what can be the reason for it.. the error which it displays before exiting is this..
You ran out of disk space. Debug libraries are much (and I mean much) larger than release ones so you need much more disk space to build them. No matter if you run make or make sub-src, the process of building the libraries will be the same, because make calls sub-src target anyway. The difference is that other components (like tools, etc.) won't be built when using make sub-src. It's simply faster this way.