Gabriele Greco <gabrielegreco@[EMAIL PROTECTED]
> wrote:
> I want to build BOTH architectures and generate a universal binary
> BUT I want to compile the objects sequentially and not in parallel like
> gcc behaviour is...
>
> Anyway I don't use xcode, at least for this project, I've not enough
> memory to run ALSO xcode (GCC on large sources allocate more than 400mb
> per file, if ps re****ts are correct, and my machine became a swap box),
> upgrade the memory on a mac mini (512mb) is not that easy and I cannot
> risk to loose it at the moment :)
If you use make, you can specify the -j option. From the man page:
-j jobs
Specifies the number of jobs (commands) to run simultaneously. If
there is more than one -j option, the last one is effective. If
the -j option is given without an argument, make will not limit
the number of jobs that can run simultaneously.
I vagely remember hearing that the optimal value is 2 * # of processor
cores, but don't pin me down on it... In your case you could try 1.
patrick


|