summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2011-04-02 12:58:13 +0200
committerSergio Ahumada <sergio.ahumada@nokia.com>2011-04-02 12:58:13 +0200
commit2cad438ede53e5c10807bac1ef9b3990c54ffa25 (patch)
tree1cd7b7224ba6fa783250dc6399a150108bb2002c
parentd0338e3b648a3847d81db2e4279e2acebac2c06e (diff)
Pulse: Let's just use JOM for the time being
-rwxr-xr-xpulse-build-script7
1 files changed, 4 insertions, 3 deletions
diff --git a/pulse-build-script b/pulse-build-script
index a6e02c5..447cc52 100755
--- a/pulse-build-script
+++ b/pulse-build-script
@@ -204,9 +204,10 @@ $make = "make " . prop("make.args", "-j4") if ($Config{'osname'} !~ /mswin/i);
# we support JOM / IncrediBuild for Windows
if ($Config{'osname'} =~ /mswin/i) {
- if (find_exe('xgconsole.exe') && find_exe('jom.exe')) {
- $make = "xgconsole /NOLOGO /COMMAND=\"jom.exe /NOLOGO " . prop("make.args", "-j20") . " /F Makefile\" /PROFILE=\"C:/Jom/bin/profile.xml\" /MAXCPUS=20";
- } elsif (find_exe('jom.exe')) {
+# if (find_exe('xgconsole.exe') && find_exe('jom.exe')) {
+# $make = "xgconsole /NOLOGO /COMMAND=\"jom.exe /NOLOGO " . prop("make.args", "-j20") . " /F Makefile\" /PROFILE=\"C:/Jom/bin/profile.xml\" /MAXCPUS=20";
+# } elsif (find_exe('jom.exe')) {
+ if (find_exe('jom.exe')) {
$make = "jom " . prop("make.args", "-j20");
}
}