author | Ehsan Akhgari <ehsan@mozilla.com> |
Sun, 27 Mar 2011 15:30:22 -0400 | |
changeset 64037 | 224477bd4b3cd848f3b77489babd53251a2d7583 |
parent 64036 | eb6edf77b7c8979df539d1bf2caafb4d0d1dcbb3 |
child 64038 | 21f028a5139a61855d744129d683c782d9a9f435 |
push id | 1 |
push user | root |
push date | Tue, 26 Apr 2011 22:38:44 +0000 |
treeherder | mozilla-beta@bfdb6e623a36 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 638149 |
milestone | 2.2a1pre |
backs out | eb6edf77b7c8979df539d1bf2caafb4d0d1dcbb3 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
aclocal.m4 | file | annotate | diff | comparison | revisions | |
build/autoconf/lto.m4 | file | annotate | diff | comparison | revisions | |
configure.in | file | annotate | diff | comparison | revisions | |
js/src/build/autoconf/lto.m4 | file | annotate | diff | comparison | revisions | |
js/src/configure.in | file | annotate | diff | comparison | revisions |
--- a/aclocal.m4 +++ b/aclocal.m4 @@ -9,17 +9,16 @@ builtin(include, build/autoconf/nspr.m4) builtin(include, build/autoconf/nss.m4)dnl builtin(include, build/autoconf/pkg.m4)dnl builtin(include, build/autoconf/freetype2.m4)dnl builtin(include, build/autoconf/codeset.m4)dnl builtin(include, build/autoconf/altoptions.m4)dnl builtin(include, build/autoconf/mozprog.m4)dnl builtin(include, build/autoconf/mozheader.m4)dnl builtin(include, build/autoconf/acwinpaths.m4)dnl -builtin(include, build/autoconf/lto.m4)dnl MOZ_PROG_CHECKMSYS() # Read the user's .mozconfig script. We can't do this in # configure.in: autoconf puts the argument parsing code above anything # expanded from configure.in, and we need to get the configure options # from .mozconfig in place before that argument parsing code. MOZ_READ_MOZCONFIG(.)
deleted file mode 100644 --- a/build/autoconf/lto.m4 +++ /dev/null @@ -1,15 +0,0 @@ -dnl check if the build is using lto. This is really primitive and only detects llvm based -dnl compilers right now. -AC_DEFUN(MOZ_DOING_LTO, -[ - cat > conftest.c <<EOF - int foo = 1; -EOF - $1=no - if ${CC-cc} ${CFLAGS} -S conftest.c -o conftest.s >/dev/null 2>&1; then - if grep '^target triple =' conftest.s; then - $1=yes - fi - fi - rm -f conftest.[cs] -])
--- a/configure.in +++ b/configure.in @@ -1977,18 +1977,16 @@ FIREFOX_VERSION=`cat $_topsrcdir/browser if test -z "$FIREFOX_VERSION"; then AC_MSG_ERROR([FIREFOX_VERSION is unexpectedly blank.]) fi AC_DEFINE_UNQUOTED(MOZILLA_VERSION,"$MOZILLA_VERSION") AC_DEFINE_UNQUOTED(MOZILLA_VERSION_U,$MOZILLA_VERSION) -MOZ_DOING_LTO(lto_is_enabled) - dnl ======================================================== dnl System overrides of the defaults for target dnl ======================================================== case "$target" in *-aix*) AC_DEFINE(AIX) if test ! "$GNU_CC"; then @@ -2080,21 +2078,19 @@ case "$target" in STRIP="$STRIP -x -S" _PLATFORM_DEFAULT_TOOLKIT='cairo-cocoa' TARGET_NSPR_MDCPUCFG='\"md/_darwin.cfg\"' # The ExceptionHandling framework is needed for Objective-C exception # logging code in nsObjCExceptions.h. Currently we only use that in debug # builds. MOZ_DEBUG_LDFLAGS="$MOZ_DEBUG_LDFLAGS -framework ExceptionHandling" - if test "x$lto_is_enabled" = "xyes"; then - echo "Skipping -dead_strip because lto is enabled." dnl DTrace and -dead_strip don't interact well. See bug 403132. dnl =================================================================== - elif test "x$enable_dtrace" = "xyes"; then + if test "x$enable_dtrace" = "xyes"; then echo "Skipping -dead_strip because DTrace is enabled. See bug 403132." else dnl check for the presence of the -dead_strip linker flag AC_MSG_CHECKING([for -dead_strip option to ld]) _SAVE_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -Wl,-dead_strip" AC_TRY_LINK(,[return 0;],_HAVE_DEAD_STRIP=1,_HAVE_DEAD_STRIP=) if test -n "$_HAVE_DEAD_STRIP" ; then
deleted file mode 100644 --- a/js/src/build/autoconf/lto.m4 +++ /dev/null @@ -1,15 +0,0 @@ -dnl check if the build is using lto. This is really primitive and only detects llvm based -dnl compilers right now. -AC_DEFUN(MOZ_DOING_LTO, -[ - cat > conftest.c <<EOF - int foo = 1; -EOF - $1=no - if ${CC-cc} ${CFLAGS} -S conftest.c -o conftest.s >/dev/null 2>&1; then - if grep '^target triple =' conftest.s; then - $1=yes - fi - fi - rm -f conftest.[cs] -])
--- a/js/src/configure.in +++ b/js/src/configure.in @@ -1881,18 +1881,16 @@ changequote(,) $PYTHON -c "import sys; sys.exit(sys.version[:3] < sys.argv[1] or sys.version[:2] != '2.')" $PYTHON_VERSION _python_res=$? changequote([,]) if test "$_python_res" != 0; then AC_MSG_ERROR([Python $PYTHON_VERSION or higher (but not Python 3.x) is required.]) fi AC_MSG_RESULT([yes]) -MOZ_DOING_LTO(lto_is_enabled) - dnl ======================================================== dnl System overrides of the defaults for target dnl ======================================================== case "$target" in *-aix*) AC_DEFINE(AIX) if test ! "$GNU_CC"; then @@ -1987,21 +1985,19 @@ case "$target" in TARGET_NSPR_MDCPUCFG='\"md/_darwin.cfg\"' LDFLAGS="$LDFLAGS -framework Cocoa -lobjc" LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS) $(LIBXUL_DIST)/bin/XUL' # The ExceptionHandling framework is needed for Objective-C exception # logging code in nsObjCExceptions.h. Currently we only use that in debug # builds. MOZ_DEBUG_LDFLAGS="$MOZ_DEBUG_LDFLAGS -framework ExceptionHandling" - if test "x$lto_is_enabled" = "xyes"; then - echo "Skipping -dead_strip because lto is enabled." dnl DTrace and -dead_strip don't interact well. See bug 403132. dnl =================================================================== - elif test "x$enable_dtrace" = "xyes"; then + if test "x$enable_dtrace" = "xyes"; then echo "Skipping -dead_strip because DTrace is enabled. See bug 403132." else dnl check for the presence of the -dead_strip linker flag AC_MSG_CHECKING([for -dead_strip option to ld]) _SAVE_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -Wl,-dead_strip" AC_TRY_LINK(,[return 0;],_HAVE_DEAD_STRIP=1,_HAVE_DEAD_STRIP=) if test -n "$_HAVE_DEAD_STRIP" ; then