Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. From 9ef031b136eac828088af726995b09f7af30709f Mon Sep 17 00:00:00 2001
  2. From: Rohan McGovern <rohan.mcgovern@nokia.com>
  3. Date: Tue, 15 Feb 2011 13:37:58 +1000
  4. Subject: [PATCH] pulse-build-script: configure with -no-pch for distcc, icecc and ccache
  5.  
  6. ccache, distcc and icecc tools will not work correctly unless Qt is
  7. configured with -no-pch. This commit should considerably improve
  8. performance of builds.
  9. ---
  10. pulse-build-script | 2 +-
  11. 1 files changed, 1 insertions(+), 1 deletions(-)
  12.  
  13. diff --git a/pulse-build-script b/pulse-build-script
  14. index 95b1efa..4d7ab7c 100755
  15. --- a/pulse-build-script
  16. +++ b/pulse-build-script
  17. @@ -97,7 +97,7 @@ my $configure = "configure";
  18. $configure = "./configure" if ($Config{'osname'} !~ /mswin/i);
  19.  
  20. my $configureopts = "-release -confirm-license -opensource -mp" if ($Config{'osname'} =~ /mswin/i);
  21. -$configureopts = "-release -confirm-license -opensource -prefix ." if ($Config{'osname'} !~ /mswin/i);
  22. +$configureopts = "-release -confirm-license -opensource -no-pch -prefix ." if ($Config{'osname'} !~ /mswin/i);
  23. $configureopts = "$configureopts -nokia-developer" if ($build_test);
  24. system_v("$configure $configureopts") and die("configure failed");
  25.  
  26. --
  27. 1.7.0.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement