![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Setting environment variable on a remote solaris machine using shell script | eamani_sun | Shell Programming and Scripting | 1 | 05-30-2008 10:05 PM |
| Solaris : compilation error | vinod_kumar_k | SUN Solaris | 2 | 12-04-2007 06:55 AM |
| Solaris 10.0 PATH environment | XNOR | UNIX for Dummies Questions & Answers | 10 | 04-09-2007 11:24 PM |
| How to configure NTP in Solaris/Windows/Linux environment...??? | jumadhiya | SUN Solaris | 8 | 02-12-2007 05:52 AM |
| compilation diff between aix & solaris | ls1429 | UNIX for Dummies Questions & Answers | 2 | 02-07-2002 10:17 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
speeding up the compilation on SUN Solaris environment
Dear friends,
Please let me know how do I increase the speed of my compilation in SUN Solaris environment. actually I have many subfolders which contains .cc files. when I compile makefile at the root it will take much time to compile all the subfolders and generates object(.o) files. Can any one of you please tell me who can I increase the compilation speed. Please provide me the solution. Thanks in advance, swamymns |
|
||||
|
If you can run the makefile against a smaller subset of cc files (or create one that does) and you have more than one cpu on your box try "multiprocessing"
Code:
cd /path/subfolder1 script_that_calls_makefile & cd /path/subfolder2 script_that_calls_makefile & |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|