Reduce default CXXFLAGS and configure flags based on Dirk's recommendations on kde-core-devel.

This applies to KDE 4.0, backport will follow.

svn path=/trunk/KDE/kdesdk/scripts/kdesvn-build; revision=487230
wilder
Michael Pyne 21 years ago
parent bead734ad4
commit 51f57a1475
  1. 4
      kdesvn-build
  2. 10
      kdesvn-buildrc-sample

@ -288,9 +288,9 @@ my %package_opts = (
"build-dir" => "build",
"build-system-only" => "",
"checkout-only" => "",
"configure-flags" => "--enable-debug=full",
"configure-flags" => "--enable-debug",
"colorful-output" => 1, # Use color by default.
"cxxflags" => "-g -pipe",
"cxxflags" => "-pipe",
"debug" => "",
"debug-level" => INFO,
"dest-dir" => '${MODULE}', # single quotes used on purpose!

@ -32,13 +32,13 @@ global
# This controls the configure flags passed to every module (except qt-copy) by
# default. If you have module-specific configure flags, they will be placed
# after these flags to allow the module setting to override them.
configure-flags --enable-debug=full
# after these flags to allow the module setting to override the global setting.
configure-flags --enable-debug
# These are the compilation flags to use by default when compiling KDE.
# The -march option also supports pentium4, athlon-xp, etc. See the gcc man
# page for more information.
cxxflags -g -pipe -march=i686
# gcc supports a -march option in order to generate specific code for pentium4, athlon-xp,
# etc. See the gcc man page for more information.
cxxflags -pipe
# KDE has one of the most extensive translation packages in the world. They
# are stored in the l10n module. kdesvn-build can automatically try to build

Loading…
Cancel
Save