Trying to compile firefox nightly

I was hoping to do the equivalent of what heftig did for aurora and compile firefox nightly into its own package. First things first is getting the source code to succesfully compile at all before worrying about how its packaged. Here's my PKGBUILD:
# $Id$
# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
# Nightly: Jonny Barnes <[email protected]>
pkgname=firefox-nightly
pkgver=34.0a1+20140806+gf822655
pkgrel=1
pkgdesc="Nightly version of the popular Firefox web browser"
arch=('i686' 'x86_64')
license=('MPL' 'GPL' 'LGPL')
url="http://www.mozilla.com/en-US/firefox/channel/"
depends=('gtk3' 'gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
'dbus-glib' 'alsa-lib' 'desktop-file-utils' 'hicolor-icon-theme')
makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake'
'xorg-server-xvfb' 'libpulse' 'gst-plugins-base-libs'
'inetutils' 'autoconf2.13' 'git')
optdepends=('networkmanager: Location detection via available WiFi networks'
'gst-plugins-good: h.264 video'
'gst-libav: h.264 video')
install=firefox-nightly.install
options=('!emptydirs' '!makeflags' '!strip')
source=(git+https://github.com/mozilla/gecko-dev
mozconfig firefox-nightly.desktop vendor.js
firefox-install-dir.patch)
sha256sums=('SKIP'
'dba05c2f04f8f086f9f08d9b962f7324ea6354ff7524ad806f743167314054eb'
'46c2de250e708295e43c87b5118cda1be2417f854c997ef54d4b92291b73416d'
'9907a80763e6a0f239bcc5634dbfbc2de8842ee76e84b5d2ad7a26f06e1242a6'
'1305f33fa009021679f9da1ee3ac13fb4f299e036e402c45a804189031f39e22')
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
# Note: These are for Arch Linux use ONLY. For your own distribution, please
# get your own set of keys. Feel free to contact [email protected] for
# more information.
_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
pkgver() {
cd gecko-dev
echo $(cat browser/config/version.txt)+$(date +%Y%m%d)+g$(git rev-parse --short HEAD)
prepare() {
cd gecko-dev
cp ../mozconfig .mozconfig
## patch -Np1 -i ../firefox-install-dir.patch
echo -n "$_google_api_key" >google-api-key
echo "ac_add_options --with-google-api-keyfile=\"$PWD/google-api-key\"" >>.mozconfig
# easiest to just delete this folder and recreate, not doing so causes an error when the ln command is run
if [[ -d "$srcdir/path" ]]; then
rm -rf "$srcdir/path"
fi
mkdir "$srcdir/path"
# WebRTC build tries to execute "python" and expects Python 2
ln -s /usr/bin/python2 "$srcdir/path/python"
# Use gold, as Mozilla can use some of its features, such as safe ICF
ln -s /usr/bin/ld.gold "$srcdir/path/ld"
if [[ $_multilib == 1 ]]; then
# Multilib i686
echo "ac_add_options --target=i686-pc-linux-gnu" >>.mozconfig
else
# Only works when not cross-compiling
echo "ac_add_options --enable-dmd" >>.mozconfig
fi
# Name it Firefox Nightly
sed -i '/^MOZ_APP_BASENAME=/s/Firefox/Firefox Nightly/' \
browser/confvars.sh
# Point all the URLs back to firefox, not firefox nightly
#sed -i 's/%APP%/firefox/g' \
# browser/app/profile/firefox.js
build() {
cd gecko-dev
# _FORTIFY_SOURCE causes configure failures
export CFLAGS="$CFLAGS $CPPFLAGS"
unset CPPFLAGS
export PATH="$srcdir/path:$PATH"
export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/firefox-nightly"
export PYTHON="/usr/bin/python2"
# Do PGO
xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" \
make -f client.mk build MOZ_PGO=1
package() {
cd gecko-dev
make -f client.mk DESTDIR="$pkgdir" INSTALL_SDK= install
install -Dm644 ../vendor.js "$pkgdir/usr/lib/firefox-nightly/browser/defaults/preferences/vendor.js"
for i in 16 32 48; do
install -Dm644 browser/branding/nightly/default$i.png \
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/firefox-nightly.png"
done
install -Dm644 browser/branding/nightly/content/icon64.png \
"$pkgdir/usr/share/icons/hicolor/64x64/apps/firefox-nightly.png"
install -Dm644 browser/branding/nightly/mozicon128.png \
"$pkgdir/usr/share/icons/hicolor/128x128/apps/firefox-nightly.png"
install -Dm644 browser/branding/nightly/content/about-logo.png \
"$pkgdir/usr/share/icons/hicolor/192x192/apps/firefox-nightly.png"
install -Dm644 browser/branding/nightly/content/[email protected] \
"$pkgdir/usr/share/icons/hicolor/384x384/apps/firefox-nightly.png"
install -Dm644 ../firefox-nightly.desktop \
"$pkgdir/usr/share/applications/firefox-nightly.desktop"
# Use system-provided dictionaries
rm -rf "$pkgdir"/usr/lib/firefox-nightly/{dictionaries,hyphenation}
ln -s /usr/share/hunspell "$pkgdir/usr/lib/firefox-nightly/dictionaries"
ln -s /usr/share/hyphen "$pkgdir/usr/lib/firefox-nightly/hyphenation"
#workaround for now
#https://bugzilla.mozilla.org/show_bug.cgi?id=658850
ln -sf firefox-nightly "$pkgdir/usr/lib/firefox-nightly/firefox-nightly-bin"
and here's my mozconfig:
. $topsrcdir/browser/config/mozconfig
ac_add_options --prefix=/usr
ac_add_options --libdir=/usr/lib
ac_add_options --with-branding=browser/branding/nightly
ac_add_options --enable-update-channel=nightly
# System libraries
ac_add_options --enable-default-toolkit=cairo-gtk3
ac_add_options --enable-system-cairo
# Features
ac_add_options --enable-startup-notification
ac_add_options --enable-gstreamer=1.0
ac_add_options --disable-crashreporter
ac_add_options --disable-updater
ac_add_options --disable-installer
ac_add_options --disable-tests
# For Nightly
ac_add_options --enable-profiling
# Compiling
ac_add_options --enable-optimize="-O2"
# Keep symbols
STRIP_FLAGS="--strip-debug"
# PGO
mk_add_options PROFILE_GEN_SCRIPT='EXTRA_TEST_ARGS=10 $(MAKE) -C $(MOZ_OBJDIR) pgo-profile-run'
# 4-core CPU
mk_add_options MOZ_MAKE_FLAGS=-j4
# vim:set ft=sh:
Then I always get this error:
cp -p ../../dist/bin/-bin
cp: missing destination file operand after ‘../../dist/bin/-bin’
Try 'cp --help' for more information.
Makefile:65: recipe for target 'libs' failed
make[6]: *** [libs] Error 1
make[6]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu/browser/app'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/config/recurse.mk:92: recipe for target 'browser/app/libs' failed
make[5]: *** [browser/app/libs] Error 2
make[5]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/config/recurse.mk:42: recipe for target 'libs' failed
make[4]: *** [libs] Error 2
make[4]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/config/rules.mk:548: recipe for target 'default' failed
make[3]: *** [default] Error 2
make[3]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/client.mk:386: recipe for target 'realbuild' failed
make[2]: *** [realbuild] Error 2
make[2]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/client.mk:221: recipe for target 'profiledbuild' failed
make[1]: *** [profiledbuild] Error 2
make[1]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev'
client.mk:168: recipe for target 'build' failed
make: *** [build] Error 2
==> ERROR: A failure occurred in build().
Aborting...
Anyone any idea what's going wrong?

So I've deleted the obj* directory, and edited out the gkt3 and cairo lines in mozconfig and I get the exact same error. Here it is with the previous couple of lines included. Do you know whats wrong?
make[6]: Entering directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu/browser/app'
rm -f '../../dist/bin/browser/defaults/preferences/firefox.js'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu/_virtualenv/bin/python -m mozbuild.action.preprocessor --depend .deps/firefox.js.pp -DFIREFOX_ICO='"../../dist/branding/firefox.ico"' -DDOCUMENT_ICO='"../../dist/branding/document.ico"' -DNEWWINDOW_ICO='"../../dist/branding/newwindow.ico"' -DNEWTAB_ICO='"../../dist/branding/newtab.ico"' -DPBMODE_ICO='"../../dist/branding/pbmode.ico"' -DAPP_VERSION='34.0a1' -DXPCOM_GLUE -DMOZ_GLUE_IN_PROGRAM -DAB_CD=en-US -DNO_NSPR_10_SUPPORT -DHAVE_X86_AVX2='1' -DHAVE_64BIT_BUILD='1' -DMOZ_ENABLE_PROFILER_SPS='1' -DMOZ_PROFILING='1' -DMOZILLA_VERSION='"34.0a1"' -DMOZILLA_VERSION_U='34.0a1' -DMOZILLA_UAVERSION='"34.0"' -DXP_LINUX='1' -DD_INO='d_ino' -DMOZ_DEBUG_SYMBOLS='1' -DSTDC_HEADERS='1' -DHAVE_SSIZE_T='1' -DHAVE_ST_BLKSIZE='1' -DHAVE_SIGINFO_T='1' -DHAVE_VISIBILITY_HIDDEN_ATTRIBUTE='1' -DHAVE_VISIBILITY_ATTRIBUTE='1' -DHAVE_DIRENT_H='1' -DHAVE_GETOPT_H='1' -DHAVE_SYS_BITYPES_H='1' -DHAVE_MEMORY_H='1' -DHAVE_UNISTD_H='1' -DHAVE_GNU_LIBC_VERSION_H='1' -DHAVE_NL_TYPES_H='1' -DHAVE_MALLOC_H='1' -DHAVE_X11_XKBLIB_H='1' -DHAVE_CPUID_H='1' -DHAVE_SYS_QUOTA_H='1' -DHAVE_SYS_SYSMACROS_H='1' -DHAVE_LINUX_QUOTA_H='1' -DHAVE_LINUX_IF_ADDR_H='1' -DHAVE_LINUX_RTNETLINK_H='1' -DHAVE_SYS_TYPES_H='1' -DHAVE_NETINET_IN_H='1' -DHAVE_BYTESWAP_H='1' -DHAVE_SYS_CDEFS_H='1' -DHAVE_DLOPEN='1' -DHAVE_DLADDR='1' -DHAVE_MEMMEM='1' -DFUNCPROTO='15' -DHAVE_LIBXSS='1' -D_REENTRANT='1' -DHAVE_STAT64='1' -DHAVE_LSTAT64='1' -DHAVE_TRUNCATE64='1' -DHAVE_LOCALTIME_R='1' -DHAVE_CLOCK_MONOTONIC='1' -DHAVE_RES_NINIT='1' -DHAVE_LANGINFO_CODESET='1' -DVA_COPY='va_copy' -DHAVE_VA_COPY='1' -DHAVE_VA_LIST_AS_ARRAY='1' -DHAVE_THREAD_TLS_KEYWORD='1' -DMALLOC_H='<malloc.h>' -DHAVE_STRNDUP='1' -DHAVE_POSIX_MEMALIGN='1' -DHAVE_MEMALIGN='1' -DHAVE_VALLOC='1' -DHAVE_MALLOC_USABLE_SIZE='1' -DHAVE_I18N_LC_MESSAGES='1' -DHAVE_LOCALECONV='1' -DTARGET_XPCOM_ABI='"x86_64-gcc3"' -DNS_ATTR_MALLOC='__attribute__((malloc))' -DNS_WARN_UNUSED_RESULT='__attribute__((warn_unused_result))' -DNIGHTLY_BUILD='1' -DMOZ_UPDATE_CHANNEL='default' -DEARLY_BETA_OR_EARLIER='1' -DMOZ_PHOENIX='1' -DMOZ_BUILD_APP='browser' -DMOZ_X11='1' -DMOZ_WIDGET_GTK2='1' -DMOZ_WIDGET_GTK='2' -DMOZ_PDF_PRINTING='1' -DMOZ_ENABLE_XREMOTE='1' -DMOZ_INSTRUMENT_EVENT_LOOP='1' -DMOZ_ENABLE_STARTUP_NOTIFICATION='1' -DNS_PRINTING='1' -DNS_PRINT_PREVIEW='1' -DMOZ_DISTRIBUTION_ID='"org.mozilla"' -DMOZ_ENABLE_GIO='1' -DMOZ_ENABLE_GCONF='1' -DMOZ_ENABLE_DBUS='1' -DACCESSIBILITY='1' -DMOZ_WEBRTC='1' -DMOZ_WEBRTC_ASSERT_ALWAYS='1' -DMOZ_WEBRTC_SIGNALING='1' -DMOZ_PEERCONNECTION='1' -DMOZ_SCTP='1' -DMOZ_SRTP='1' -DMOZ_SAMPLE_TYPE_FLOAT32='1' -DMOZ_WEBSPEECH='1' -DMOZ_RAW='1' -DATTRIBUTE_ALIGNED_MAX='64' -DMOZ_WEBM='1' -DMOZ_FFMPEG='1' -DMOZ_FMP4='1' -DMOZ_EME='1' -DMOZ_MEDIA_NAVIGATOR='1' -DMOZ_VPX='1' -DMOZ_VPX_ERROR_CONCEALMENT='1' -DVPX_X86_ASM='1' -DMOZ_WAVE='1' -DMOZ_VORBIS='1' -DMOZ_OPUS='1' -DMOZ_WEBM_ENCODER='1' -DMOZ_GSTREAMER='1' -DGST_API_VERSION='"1.0"' -DENABLE_SYSTEM_EXTENSION_DIRS='1' -DMOZ_WEBGL='1' -DMOZ_WEBGL_CONFORMANT='1' -DMOZ_GAMEPAD='1' -DMOZ_CRASHREPORTER_ENABLE_PERCENT='100' -DLIBJPEG_TURBO_X64_ASM='1' -DMOZ_WEBAPP_RUNTIME='1' -DMOZ_GMP_SANDBOX='1' -DMOZ_FEEDS='1' -DMOZ_SAFE_BROWSING='1' -DMOZ_URL_CLASSIFIER='1' -DGL_PROVIDER_GLX='1' -DMOZ_LOGGING='1' -DMOZ_DMD='1' -DMOZ_MEMORY='1' -DMOZ_MEMORY_LINUX='1' -DJSGC_INCREMENTAL='1' -DJSGC_USE_EXACT_ROOTING='1' -DJSGC_GENERATIONAL='1' -DMOZ_PAY='1' -DMOZ_ACTIVITIES='1' -DHAVE___CXA_DEMANGLE='1' -DMOZ_DEMANGLE_SYMBOLS='1' -DHAVE__UNWIND_BACKTRACE='1' -DJS_DEFAULT_JITREPORT_GRANULARITY='3' -DMOZ_OMNIJAR='1' -DMOZ_USER_DIR='".mozilla"' -DHAVE_FT_BITMAP_SIZE_Y_PPEM='1' -DHAVE_FT_GLYPHSLOT_EMBOLDEN='1' -DHAVE_FT_LOAD_SFNT_TABLE='1' -DHAVE_FONTCONFIG_FCFREETYPE_H='1' -DMOZ_TREE_PIXMAN='1' -DHAVE_STDINT_H='1' -DHAVE_INTTYPES_H='1' -DMOZ_TREE_CAIRO='1' -DMOZ_ENABLE_SKIA='1' -DUSE_SKIA='1' -DUSE_SKIA_GPU='1' -DMOZ_XUL='1' -DMOZ_PROFILELOCKING='1' -DENABLE_MARIONETTE='1' -DBUILD_CTYPES='1' -DMOZ_PLACES='1' -DMOZ_SOCIAL='1' -DMOZ_SERVICES_COMMON='1' -DMOZ_SERVICES_CRYPTO='1' -DMOZ_SERVICES_HEALTHREPORT='1' -DMOZ_SERVICES_METRICS='1' -DMOZ_SERVICES_SYNC='1' -DMOZ_JSDOWNLOADS='1' -DMOZ_MACBUNDLE_ID='org.mozilla.nightly' -DMOZ_B2G_VERSION='"1.0.0"' -DMOZ_B2G_OS_NAME='""' -DMOZ_APP_UA_NAME='""' -DMOZ_APP_UA_VERSION='"34.0a1"' -DFIREFOX_VERSION='34.0a1' -DMOZ_TELEMETRY_DISPLAY_REV='2' -DMOZ_DATA_REPORTING='1' -DMOZ_DLL_SUFFIX='".so"' -DHAVE_POSIX_FADVISE='1' -DHAVE_POSIX_FALLOCATE='1' -DXP_UNIX='1' -DMOZ_ACCESSIBILITY_ATK='1' -DATK_MAJOR_VERSION='2' -DATK_MINOR_VERSION='12' -DATK_REV_VERSION='0' -DA11Y_LOG='1' -DEXPOSE_INTL_API='1' -DENABLE_INTL_API='1' -DU_STATIC_IMPLEMENTATION='1' -DU_USING_ICU_NAMESPACE='0' -DMOZ_STATIC_JS='1' -DNDEBUG -DTRIMMED '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/browser/app/profile/firefox.js' -o '../../dist/bin/browser/defaults/preferences/firefox.js'
cp -p ../../dist/bin/-bin
cp: missing destination file operand after ‘../../dist/bin/-bin’
Try 'cp --help' for more information.
Makefile:64: recipe for target 'libs' failed
make[6]: *** [libs] Error 1
make[6]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu/browser/app'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/config/recurse.mk:92: recipe for target 'browser/app/libs' failed
make[5]: *** [browser/app/libs] Error 2
make[5]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/config/recurse.mk:42: recipe for target 'libs' failed
make[4]: *** [libs] Error 2
make[4]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/config/rules.mk:547: recipe for target 'default' failed
make[3]: *** [default] Error 2
make[3]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/obj-x86_64-unknown-linux-gnu'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/client.mk:386: recipe for target 'realbuild' failed
make[2]: *** [realbuild] Error 2
make[2]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev'
/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev/client.mk:221: recipe for target 'profiledbuild' failed
make[1]: *** [profiledbuild] Error 2
make[1]: Leaving directory '/mnt/storage/archive/firefox-nightly-arch/src/gecko-dev'
client.mk:168: recipe for target 'build' failed
make: *** [build] Error 2
==> ERROR: A failure occurred in build().
Aborting...

Similar Messages

  • Compiling Firefox Mobile with ADS 1.2

    Hi,
    I'm trying to compile Firefox Mobile with ADS 1.2. But before starting, I would like to know from you guys whether it would be possible to compile Firefox Mobile with any of the ARM compilers so that I could put it into a phone having proprietory OS/platform?
    Please let me know as I would love to see Firefox Mobile on our handsets.
    == Extensions installed: ==
    As of now, I don't intend to use any extensions with Firefox Mobile.

    Initially changing the default application in Android is a snap. After you install the new application (new web browser, new messaging tool, new whatever) Android prompts you to pick which application (the new or the old) you wish to use for that task the first time you attempt to open a web page, check your text message, or otherwise trigger the event.
    *Grab your Android device and navigate to the '''Settings''' menu (either by tapping the physical '''Menu Button''' and selecting '''Settings''' or by opening your application list and selecting Settings as seen in the first panel. Navigate to Applications and then to Manage applications.
    and then clear your default settings, See:
    *http://www.howtogeek.com/howto/43135/how-to-change-the-default-application-for-android-tasks/

  • Images in Firefox Nightly doesn't finish loading.

    I have no idea why this is happening to me or how I can make it stop but... I have a really annoying problem with Firefox Nightly. Whenever there is an image, any kind of image, on a page it won’t finish loading approximately 99% of the time. It goes down maybe 20 inches and then all I see is the colour black, as if the loading sequence was interrupted or something.
    I’ve tried clearing the history, cache, reinstalling Firefox Nightly and CCleaner to no use. My two or three addons that I use should not conflict with anything since I’ve been using them for a good while now.
    Please help me!

    If it works in Safe mode or with all extensions (Tools > Add-ons > Extensions) disabled then try to find which is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    In Firefox Safe mode these changes are effective:
    *all extensions are disabled
    *the default theme is used (no persona)
    *userChrome.css and userContent.css are ignored
    *the default toolbar layout is used (localstore-safe.rdf)
    *the Javascript JIT compiler is disabled
    *hardware acceleration is disabled
    *plugins are not affected
    *preferences are not affected

  • Firefox Nightly unable to open new window in browser

    I have downloaded the 64 bit version of the firefox nightly from here: http://nightly.mozilla.org/
    I am running win 7 64 bit.
    Problem I have been getting is whenever I want a new window open to have on another screen it never loads. This is getting really annoying now and I have almost had enough. I had been using firefox 32 bit but it stopped loading flash videos and youtube videos thats why I moved to the firefox nightly build.
    Also most of the time firefox doesnt close properly, I have to end the process using task manager to start the firefox nightly browser.
    Also whenever I open a new window from scratch it always brings up the 'restore previous pages' part.
    Please can you help me resolve this issue.
    Thanks

    There is no 64 bit Firefox version on the nightly.mozilla.org site, only a 32 bit version.
    Although there is a 64 bit version compiled, those are only meant to make sure that the compilation isn't broken. The 64 bit versions for Windows aren't tested like they are for Mac and Linux, so you use them on your own risk. You should stay with the 32 bit versions for Windows.

  • How can Firefox Nightly (V. 22.0a1) Global Menu Bar be disabled in Ubuntu 12.04 LTS (When it has been disabled in FireFox Stable (19.0) and Unity (5.18.0))

    I have tried various methods of removing the Global Menu Bar from both unity and Firefox before, but they seem to have no bearing on the Firefox Nightly version.
    1. Nightly doesn't have the "Global Menu Bar Integration" addon by default.
    2. "sudo apt-get remove firefox-globalmenu" does not effect Nightly.
    3. trying "sudo apt-get install appmenu-gtk appmenu-gtk3 appmenu-qt" and then "sudo apt-get autoremove etc..." for unity doesn't effect Nightly.
    4. Menu editor addons don't target this problem.
    5. All searchable online help relates to re-inabling the global bar due to earlier Nightly version bugs.
    6. It doesn't matter what graphics hardware is used, the results are still the same.
    Sorry if this is the wrong place to ask, but on hi-res screens this is more than just annoying to always be running back up to the top bar.
    Related Software Installed:
    Ubuntu 12.04 LTS (64-bit)
    Unity: 5.18.0
    GNOME 3.4.2
    The Bumblebee Project: 3.1
    Firefox Stable Release: 19.0
    Firefox Nightly: 22.0a1
    Relivent Hardware:
    i7 2nd gen CPU
    nVidia: GeForce GT 540M Hybrid Graphics
    Thanks for your time.

    * Try in safemode or reset your firefox and give a try..

  • Error when compiling firefox...Out of memory: Kill process 6763

    I'm trying to compile the firefox version 15 as both 16.0.1 and I always get the same error, which I think leaves me with no ram even though I have 8 gigs, i try it with 8 gigs of swap but does exactly the same, here are all the facts about this problem, the only thing I have not tried is to change the compiler version, what do you think? this is a clear linkage error where the system breaks down after running out of physical memory...
    ERROR--->-using  yaourt -Sb or makepkg -s:
    /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/toolkit/library/nsUnicharUtils.cpp:275:1: warning: always_inline function might not be inlinable [-Wattributes]
    /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/toolkit/library/nsUnicharUtils.cpp:50:1: warning: always_inline function might not be inlinable [-Wattributes]
    /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/toolkit/library/nsUnicharUtils.cpp:40:1: warning: always_inline function might not be inlinable [-Wattributes]
    rm -f libxul.so
    /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/_virtualenv/bin/python /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/config/pythonpath.py -I../../config /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/config/expandlibs_exec.py --depend .deps/libxul.so.pp --target libxul.so --uselist -- c++ -pedantic -Wall -Wpointer-arith -Woverloaded-virtual -Werror=return-type -Wtype-limits -Wempty-body -Wno-ctor-dtor-privacy -Wno-overlength-strings -Wno-invalid-offsetof -Wno-variadic-macros -Wcast-align -Wno-long-long -march=native -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -fno-exceptions -fno-strict-aliasing -fno-rtti -ffunction-sections -fdata-sections -fno-exceptions -std=gnu++0x -pthread -pipe -DNDEBUG -DTRIMMED -g -fprofile-generate -O3 -fomit-frame-pointer -fPIC -shared -Wl,-z,defs -Wl,--gc-sections -Wl,-h,libxul.so -o libxul.so nsStaticXULComponents.i_o nsUnicharUtils.i_o nsBidiUtils.i_o nsSpecialCasingData.i_o nsUnicodeProperties.i_o nsRDFResource.i_o -lpthread -Wl,-O1,--sort-common,--as-needed,-z,relro -Wl,-rpath,/usr/lib/firefox -Wl,-z,noexecstack -fprofile-generate -Wl,-rpath-link,/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/dist/bin -Wl,-rpath-link,/usr/lib ../../toolkit/xre/libxulapp_s.a ../../staticlib/components/libnecko.a ../../staticlib/components/libuconv.a ../../staticlib/components/libi18n.a ../../staticlib/components/libchardet.a ../../staticlib/components/libjar50.a ../../staticlib/components/libstartupcache.a ../../staticlib/components/libpref.a ../../staticlib/components/libhtmlpars.a ../../staticlib/components/libidentity.a ../../staticlib/components/libimglib2.a ../../staticlib/components/libgkgfx.a ../../staticlib/components/libgklayout.a ../../staticlib/components/libdocshell.a ../../staticlib/components/libembedcomponents.a ../../staticlib/components/libwebbrwsr.a ../../staticlib/components/libnsappshell.a ../../staticlib/components/libtxmgr.a ../../staticlib/components/libcommandlines.a ../../staticlib/components/libtoolkitcomps.a ../../staticlib/components/libpipboot.a ../../staticlib/components/libpipnss.a ../../staticlib/components/libappcomps.a ../../staticlib/components/libjsreflect.a ../../staticlib/components/libcomposer.a ../../staticlib/components/libtelemetry.a ../../staticlib/components/libjsinspector.a ../../staticlib/components/libjsdebugger.a ../../staticlib/components/libstoragecomps.a ../../staticlib/components/librdf.a ../../staticlib/components/libwindowds.a ../../staticlib/components/libjsctypes.a ../../staticlib/components/libjsperf.a ../../staticlib/components/libgkplugin.a ../../staticlib/components/libunixproxy.a ../../staticlib/components/libjsd.a ../../staticlib/components/libautoconfig.a ../../staticlib/components/libauth.a ../../staticlib/components/libcookie.a ../../staticlib/components/libpermissions.a ../../staticlib/components/libuniversalchardet.a ../../staticlib/components/libfileview.a ../../staticlib/components/libplaces.a ../../staticlib/components/libtkautocomplete.a ../../staticlib/components/libsatchel.a ../../staticlib/components/libpippki.a ../../staticlib/components/libwidget_gtk2.a ../../staticlib/components/libimgicon.a ../../staticlib/components/libprofiler.a ../../staticlib/components/libaccessibility.a ../../staticlib/components/libremoteservice.a ../../staticlib/components/libspellchecker.a ../../staticlib/components/libzipwriter.a ../../staticlib/components/libservices-crypto.a ../../staticlib/libjsipc_s.a ../../staticlib/libdomipc_s.a ../../staticlib/libdomplugins_s.a ../../staticlib/libmozipc_s.a ../../staticlib/libmozipdlgen_s.a ../../staticlib/libipcshell_s.a ../../staticlib/libgfxipc_s.a ../../staticlib/libhal_s.a ../../staticlib/libdombindings_s.a ../../staticlib/libxpcom_core.a ../../staticlib/libucvutil_s.a ../../staticlib/libchromium_s.a ../../staticlib/libsnappy_s.a ../../staticlib/libgtkxtbin.a ../../staticlib/libthebes.a ../../staticlib/libgl.a ../../staticlib/libycbcr.a -L../../dist/bin -L../../dist/lib /tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/dist/lib/libjs_static.a -lffi -Wl,-rpath-link,/usr/lib -L/usr/lib -lssl3 -lsmime3 -lnss3 -lnssutil3 -lcrmf -lXrender -lfreetype -lfontconfig -lsqlite3 -ljpeg -lpng -lz -lhunspell-1.3 -L/usr/lib -levent -lpixman-1 ../../dist/lib/libgkmedias.a -lasound -lrt -L../../dist/bin -L../../dist/lib -L/usr/lib -lplds4 -lplc4 -lnspr4 -lpthread -ldl ../../dist/lib/libmozalloc.a -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -lX11 -lXext -lpangoft2-1.0 -lfreetype -lfontconfig -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lfreetype -lfontconfig -lgdk-x11-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 -lXt -lgthread-2.0 -lfreetype -lstartup-notification-1 -lvpx -ldl -lrt -lrt
    collect2: error: ld terminated with signal 9 [Matat]
    make[6]: *** [libxul.so] Error 1
    make[6]: Leaving directory `/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu/toolkit/library'
    make[5]: *** [libs_tier_platform] Error 2
    make[5]: Leaving directory `/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu'
    make[4]: *** [tier_platform] Error 2
    make[4]: Leaving directory `/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu'
    make[3]: *** [default] Error 2
    make[3]: Leaving directory `/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release/obj-x86_64-unknown-linux-gnu'
    make[2]: *** [realbuild] Error 2
    make[2]: Leaving directory `/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release'
    make[1]: *** [profiledbuild] Error 2
    make[1]: Leaving directory `/tmp/yaourt-tmp-enric/abs-firefox/src/mozilla-release'
    make: *** [build] Error 2
    dmesg output on  ld :
    [ 1521.353469] ld invoked oom-killer: gfp_mask=0x280da, order=0, oom_adj=0, oom_score_adj=0
    [ 1521.353474] Pid: 6763, comm: ld Not tainted 3.6.0 #1
    [ 1521.353475] Call Trace:
    [ 1521.353482] [<ffffffff814cc68e>] ? dump_header.isra.11+0x5d/0x18e
    [ 1521.353486] [<ffffffff812ae3dc>] ? ___ratelimit+0xac/0x120
    [ 1521.353489] [<ffffffff810e2fb5>] ? oom_kill_process+0x275/0x3b0
    [ 1521.353492] [<ffffffff810e2b10>] ? find_lock_task_mm+0x20/0x70
    [ 1521.353494] [<ffffffff810e3455>] ? out_of_memory+0x1c5/0x290
    [ 1521.353497] [<ffffffff810e742a>] ? __alloc_pages_nodemask+0x85a/0x870
    [ 1521.353500] [<ffffffff811048c4>] ? handle_pte_fault+0x8c4/0xb10
    [ 1521.353505] [<ffffffff81075ddf>] ? select_task_rq_fair+0x4cf/0x790
    [ 1521.353509] [<ffffffff8100a21f>] ? native_sched_clock+0xf/0x70
    [ 1521.353512] [<ffffffff8102b880>] ? do_page_fault+0x130/0x460
    [ 1521.353515] [<ffffffff810e6301>] ? get_page_from_freelist+0x311/0x670
    [ 1521.353519] [<ffffffff814d2275>] ? page_fault+0x25/0x30
    [ 1521.353523] [<ffffffff810df577>] ? file_read_actor+0x67/0x1f0
    [ 1521.353526] [<ffffffff810f6915>] ? shmem_file_aio_read+0x155/0x3a0
    [ 1521.353530] [<ffffffff81128832>] ? do_sync_read+0x92/0xd0
    [ 1521.353532] [<ffffffff811290c0>] ? vfs_read+0xa0/0x160
    [ 1521.353535] [<ffffffff811291c7>] ? sys_read+0x47/0xa0
    [ 1521.353537] [<ffffffff814d2275>] ? page_fault+0x25/0x30
    [ 1521.353540] [<ffffffff814d27fd>] ? system_call_fastpath+0x1a/0x1f
    [ 1521.353541] Mem-Info:
    [ 1521.353543] DMA per-cpu:
    [ 1521.353544] CPU 0: hi: 0, btch: 1 usd: 0
    [ 1521.353545] CPU 1: hi: 0, btch: 1 usd: 0
    [ 1521.353546] CPU 2: hi: 0, btch: 1 usd: 0
    [ 1521.353547] CPU 3: hi: 0, btch: 1 usd: 0
    [ 1521.353548] DMA32 per-cpu:
    [ 1521.353550] CPU 0: hi: 186, btch: 31 usd: 0
    [ 1521.353551] CPU 1: hi: 186, btch: 31 usd: 26
    [ 1521.353552] CPU 2: hi: 186, btch: 31 usd: 59
    [ 1521.353553] CPU 3: hi: 186, btch: 31 usd: 0
    [ 1521.353554] Normal per-cpu:
    [ 1521.353555] CPU 0: hi: 186, btch: 31 usd: 30
    [ 1521.353556] CPU 1: hi: 186, btch: 31 usd: 156
    [ 1521.353557] CPU 2: hi: 186, btch: 31 usd: 169
    [ 1521.353558] CPU 3: hi: 186, btch: 31 usd: 0
    [ 1521.353562] active_anon:1599337 inactive_anon:345122 isolated_anon:0
    active_file:140 inactive_file:222 isolated_file:0
    unevictable:17 dirty:0 writeback:0 unstable:0
    free:11562 slab_reclaimable:14927 slab_unreclaimable:21150
    mapped:6681 shmem:932329 pagetables:10868 bounce:0
    [ 1521.353567] DMA free:15892kB min:20kB low:24kB high:28kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15644kB mlocked:0kB dirty:0kB writeback:0kB mapped:0kB shmem:0kB slab_reclaimable:0kB slab_unreclaimable:8kB kernel_stack:0kB pagetables:0kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? yes
    [ 1521.353568] lowmem_reserve[]: 0 3147 7925 7925
    [ 1521.353575] DMA32 free:23592kB min:4520kB low:5648kB high:6780kB active_anon:2754024kB inactive_anon:412764kB active_file:16kB inactive_file:44kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:3223060kB mlocked:0kB dirty:0kB writeback:0kB mapped:5892kB shmem:1294220kB slab_reclaimable:7144kB slab_unreclaimable:5108kB kernel_stack:216kB pagetables:8616kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:715 all_unreclaimable? yes
    [ 1521.353576] lowmem_reserve[]: 0 0 4778 4778
    [ 1521.353582] Normal free:6764kB min:6860kB low:8572kB high:10288kB active_anon:3643324kB inactive_anon:967724kB active_file:544kB inactive_file:844kB unevictable:68kB isolated(anon):0kB isolated(file):0kB present:4892832kB mlocked:68kB dirty:0kB writeback:0kB mapped:20832kB shmem:2435096kB slab_reclaimable:52564kB slab_unreclaimable:79484kB kernel_stack:2968kB pagetables:34856kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:2484 all_unreclaimable? yes
    [ 1521.353583] lowmem_reserve[]: 0 0 0 0
    [ 1521.353586] DMA: 1*4kB 0*8kB 1*16kB 0*32kB 2*64kB 1*128kB 1*256kB 0*512kB 1*1024kB 1*2048kB 3*4096kB = 15892kB
    [ 1521.353592] DMA32: 740*4kB 506*8kB 300*16kB 135*32kB 25*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 1*2048kB 1*4096kB = 23872kB
    [ 1521.353599] Normal: 637*4kB 0*8kB 0*16kB 2*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 6516kB
    [ 1521.353605] 932908 total pagecache pages
    [ 1521.353606] 0 pages in swap cache
    [ 1521.353607] Swap cache stats: add 0, delete 0, find 0/0
    [ 1521.353608] Free swap = 0kB
    [ 1521.353609] Total swap = 0kB
    [ 1521.369740] 2094576 pages RAM
    [ 1521.369743] 80362 pages reserved
    [ 1521.369744] 36619 pages shared
    [ 1521.369745] 1993098 pages non-shared
    [ 1521.369746] [ pid ] uid tgid total_vm rss nr_ptes swapents oom_score_adj name
    [ 1521.369752] [ 2286] 0 2286 6258 269 16 0 -1000 systemd-udevd
    [ 1521.369754] [ 2293] 0 2293 153174 83 229 0 0 systemd-journal
    [ 1521.369757] [ 3585] 0 3585 4695 188 13 0 0 mount.ntfs-3g
    [ 1521.369759] [ 3615] 0 3615 3547 140 12 0 0 crond
    [ 1521.369761] [ 3616] 0 3616 6708 2523 18 0 0 preload
    [ 1521.369763] [ 3617] 0 3617 17762 297 38 0 0 cupsd
    [ 1521.369765] [ 3619] 0 3619 43562 313 52 0 0 NetworkManager
    [ 1521.369767] [ 3620] 84 3620 6988 70 20 0 0 avahi-daemon
    [ 1521.369769] [ 3621] 0 3621 6515 72 18 0 0 systemd-logind
    [ 1521.369770] [ 3622] 81 3622 4595 285 14 0 -900 dbus-daemon
    [ 1521.369772] [ 3626] 0 3626 2275 32 9 0 0 agetty
    [ 1521.369774] [ 3627] 0 3627 6693 53 19 0 0 kdm
    [ 1521.369776] [ 3628] 84 3628 6957 52 18 0 0 avahi-daemon
    [ 1521.369778] [ 3631] 0 3631 45316 12716 91 0 0 X
    [ 1521.369780] [ 4287] 0 4287 15666 128 36 0 0 kdm
    [ 1521.369782] [ 5131] 102 5131 92417 912 41 0 0 polkitd
    [ 1521.369784] [ 5132] 0 5132 53222 346 41 0 0 colord
    [ 1521.369786] [ 5163] 0 5163 129753 991 153 0 0 colord-sane
    [ 1521.369788] [11395] 0 11395 523912 258 62 0 0 console-kit-dae
    [ 1521.369790] [11468] 1000 11468 3668 111 13 0 0 startkde
    [ 1521.369792] [11480] 1000 11480 3970 37 13 0 0 dbus-launch
    [ 1521.369794] [11481] 1000 11481 4839 401 15 0 0 dbus-daemon
    [ 1521.369796] [11507] 1000 11507 4068 94 12 0 0 gpg-agent
    [ 1521.369798] [11510] 1000 11510 3760 87 11 0 0 ssh-agent
    [ 1521.369799] [11524] 1000 11524 1013 21 7 0 -300 start_kdeinit
    [ 1521.369801] [11525] 1000 11525 85821 1591 149 0 -300 kdeinit4
    [ 1521.369803] [11528] 1000 11528 188590 3072 227 0 0 kded4
    [ 1521.369805] [11534] 1000 11534 108217 2084 173 0 0 kwalletd
    [ 1521.369807] [11539] 1000 11539 107913 2348 173 0 0 kglobalaccel
    [ 1521.369809] [11542] 0 11542 55597 601 43 0 0 upowerd
    [ 1521.369811] [11555] 1000 11555 1047 18 7 0 0 kwrapper4
    [ 1521.369813] [11556] 1000 11556 127307 2185 174 0 0 ksmserver
    [ 1521.369814] [11568] 0 11568 49409 269 33 0 0 udisks-daemon
    [ 1521.369816] [11573] 0 11573 12394 89 28 0 0 udisks-daemon
    [ 1521.369818] [11577] 1000 11577 214097 12177 260 0 0 kwin
    [ 1521.369820] [11590] 1000 11590 93530 1489 131 0 0 kactivitymanage
    [ 1521.369822] [11621] 1000 11621 343123 3417 215 0 0 knotify4
    [ 1521.369824] [11631] 1000 11631 175587 4370 239 0 0 krunner
    [ 1521.369826] [11633] 1000 11633 246522 16714 342 0 0 plasma-desktop
    [ 1521.369828] [11636] 1000 11636 216148 5325 253 0 0 lancelot
    [ 1521.369830] [11639] 1000 11639 50634 268 35 0 0 mission-control
    [ 1521.369831] [11643] 1000 11643 37597 405 39 0 0 akonadi_control
    [ 1521.369833] [11645] 1000 11645 357276 722 81 0 0 akonadiserver
    [ 1521.369835] [11652] 1000 11652 377776 6206 70 0 0 mysqld
    [ 1521.369837] [11738] 1000 11738 76786 1061 110 0 0 akonadi_agent_l
    [ 1521.369839] [11739] 1000 11739 76783 1056 111 0 0 akonadi_agent_l
    [ 1521.369841] [11740] 1000 11740 75143 1033 111 0 0 akonadi_agent_l
    [ 1521.369843] [11741] 1000 11741 75144 1042 110 0 0 akonadi_agent_l
    [ 1521.369845] [11742] 1000 11742 75800 1048 112 0 0 akonadi_agent_l
    [ 1521.369847] [11743] 1000 11743 75800 1054 107 0 0 akonadi_agent_l
    [ 1521.369848] [11744] 1000 11744 76786 1064 108 0 0 akonadi_agent_l
    [ 1521.369850] [11745] 1000 11745 76780 1073 111 0 0 akonadi_agent_l
    [ 1521.369852] [11746] 1000 11746 84215 1305 155 0 0 akonadi_maildis
    [ 1521.369854] [11747] 1000 11747 92098 1211 138 0 0 akonadi_nepomuk
    [ 1521.369856] [11774] 1000 11774 59745 591 76 0 0 nepomukserver
    [ 1521.369858] [11777] 1000 11777 287924 2235 149 0 0 nepomukservices
    [ 1521.369860] [11795] 1000 11795 100823 10181 51 0 0 virtuoso-t
    [ 1521.369861] [11801] 1000 11801 93041 786 99 0 0 pulseaudio
    [ 1521.369863] [11802] 133 11802 41125 46 17 0 0 rtkit-daemon
    [ 1521.369865] [11811] 1000 11811 17253 140 36 0 0 gconf-helper
    [ 1521.369867] [11813] 1000 11813 11527 127 26 0 0 gconfd-2
    [ 1521.369869] [11816] 1000 11816 68886 1148 123 0 0 kuiserver
    [ 1521.369871] [11837] 1000 11837 58146 1047 105 0 0 nepomukservices
    [ 1521.369873] [11839] 1000 11839 53655 966 98 0 0 nepomukservices
    [ 1521.369875] [11840] 1000 11840 92263 1128 107 0 0 nepomukservices
    [ 1521.369877] [11841] 1000 11841 109750 1232 107 0 0 nepomukservices
    [ 1521.369878] [12942] 1000 12942 41975 542 78 0 0 kwrited
    [ 1521.369880] [12944] 1000 12944 246808 6774 195 0 0 ktorrent
    [ 1521.369882] [12954] 1000 12954 93430 1212 139 0 0 polkit-kde-auth
    [ 1521.369884] [12957] 1000 12957 70673 1126 130 0 0 nepomukcontroll
    [ 1521.369886] [12959] 1000 12959 92309 1654 138 0 0 kgpg
    [ 1521.369888] [12966] 1000 12966 109879 2164 176 0 0 klipper
    [ 1521.369890] [13009] 1000 13009 86477 1682 131 0 0 kio_http_cache_
    [ 1521.369892] [17302] 1000 17302 270535 59165 488 0 0 firefox
    [ 1521.369894] [17322] 1000 17322 10407 86 26 0 0 gvfsd
    [ 1521.369896] [17324] 1000 17324 50365 171 31 0 0 gvfs-fuse-daemo
    [ 1521.369897] [18462] 1000 18462 138761 5014 199 0 0 konsole
    [ 1521.369899] [18464] 1000 18464 4227 156 13 0 0 bash
    [ 1521.369901] [19535] 1000 19535 3885 324 13 0 0 yaourt
    [ 1521.369903] [19680] 1000 19680 3800 253 13 0 0 makepkg
    [ 1521.369905] [22861] 1000 22861 174765 6917 209 0 0 dolphin
    [ 1521.369907] [24940] 1000 24940 12258 2121 27 0 0 Xvfb
    [ 1521.369909] [24941] 1000 24941 2944 134 11 0 0 make
    [ 1521.369911] [25116] 1000 25116 2946 137 11 0 0 make
    [ 1521.369913] [25337] 1000 25337 3013 200 11 0 0 make
    [ 1521.369915] [ 473] 1000 473 2977 169 12 0 0 make
    [ 1521.369917] [ 3719] 1000 3719 3006 176 12 0 0 make
    [ 1521.369919] [10784] 1000 10784 3006 175 13 0 0 make
    [ 1521.369921] [12252] 1000 12252 115351 9567 175 0 0 kvirc
    [ 1521.369922] [26014] 1000 26014 4256 168 13 0 0 bash
    [ 1521.369925] [30177] 1000 30177 4255 167 14 0 0 bash
    [ 1521.369926] [30976] 1000 30976 86977 3634 138 0 0 plugin-containe
    [ 1521.369928] [ 915] 1000 915 87003 1648 132 0 0 kio_file
    [ 1521.369930] [ 916] 1000 916 109277 2635 176 0 0 kio_thumbnail
    [ 1521.369932] [ 1186] 1000 1186 4227 157 13 0 0 bash
    [ 1521.369934] [ 2105] 1000 2105 86873 1689 132 0 0 klauncher
    [ 1521.369936] [ 2473] 1000 2473 87003 1648 132 0 0 kio_file
    [ 1521.369938] [ 3468] 1000 3468 141313 5962 206 0 0 kate
    [ 1521.369940] [ 6331] 1000 6331 109512 2225 174 0 0 kate
    [ 1521.369942] [ 6733] 1000 6733 2983 150 12 0 0 make
    [ 1521.369943] [ 6760] 1000 6760 17243 1559 39 0 0 python
    [ 1521.369945] [ 6761] 1000 6761 1882 30 9 0 0 c++
    [ 1521.369947] [ 6762] 1000 6762 1816 23 9 0 0 collect2
    [ 1521.369949] [ 6763] 1000 6763 812215 809141 1588 0 0 ld
    [color=#FF40BF][ 1521.369951] Out of memory: Kill process 6763 (ld) score 402 or sacrifice child
    [ 1521.369953] Killed process 6763 (ld) total-vm:3248860kB, anon-rss:3236396kB, file-rss:168kB[/color]
    gcc -v
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.2/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/src/gcc-4.7.2/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --enable-libstdcxx-time --enable-gnu-unique-object --enable-linker-build-id --with-ppl --enable-cloog-backend=isl --disable-ppl-version-check --disable-cloog-version-check --enable-lto --enable-gold --enable-ld=default --enable-plugin --with-plugin-ld=ld.gold --with-linker-hash-style=gnu --disable-multilib --disable-libssp --disable-build-with-cxx --disable-build-poststage1-with-cxx --enable-checking=release
    Thread model: posix
    gcc version 4.7.2 (GCC)
    cat /proc/meminfo
    MemTotal: 8056856 kB
    MemFree: 1240336 kB
    Buffers: 278356 kB
    Cached: 4591784 kB
    SwapCached: 0 kB
    Active: 2700172 kB
    Inactive: 3860720 kB
    Active(anon): 2498432 kB
    Inactive(anon): 2441488 kB
    Active(file): 201740 kB
    Inactive(file): 1419232 kB
    Unevictable: 68 kB
    Mlocked: 68 kB
    SwapTotal: 0 kB
    SwapFree: 0 kB
    Dirty: 124 kB
    Writeback: 0 kB
    AnonPages: 1690996 kB
    Mapped: 218032 kB
    Shmem: 3249176 kB
    Slab: 172972 kB
    SReclaimable: 90332 kB
    SUnreclaim: 82640 kB
    KernelStack: 3264 kB
    PageTables: 38384 kB
    NFS_Unstable: 0 kB
    Bounce: 0 kB
    WritebackTmp: 0 kB
    CommitLimit: 4028428 kB
    Committed_AS: 6713700 kB
    VmallocTotal: 34359738367 kB
    VmallocUsed: 92972 kB
    VmallocChunk: 34359642076 kB
    HugePages_Total: 0
    HugePages_Free: 0
    HugePages_Rsvd: 0
    HugePages_Surp: 0
    Hugepagesize: 2048 kB
    DirectMap4k: 10240 kB
    DirectMap2M: 7237632 kB
    /etc/makepkg.conf
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    CFLAGS="-march=native -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
    MAKEFLAGS="-j5"
    thanks a lot
    Last edited by papu (2012-10-13 17:35:38)

    yes it's true it take 4gigs of 8 gigs i have,  but when i was using gentoo never had this problem when i was compiling any package and then my pc was 4gigs.
    df -hT
    Filesystem Type Size Used Avail Use% Mounted on
    rootfs rootfs 51G 7.7G 41G 17% /
    dev devtmpfs 3.9G 0 3.9G 0% /dev
    run tmpfs 3.9G 1.6M 3.9G 1% /run
    /dev/sdb2 ext4 51G 7.7G 41G 17% /
    tmpfs tmpfs 3.9G 76K 3.9G 1% /dev/shm
    tmpfs tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup
    tmpfs tmpfs 3.9G 56K 3.9G 1% /tmp
    /dev/sdc1 fuseblk 299G 237G 62G 80% /mnt/share
    /dev/sdb1 ext2 183M 28M 146M 16% /boot
    /dev/sdb3 ext4 18G 6.2G 11G 37% /home
    i am using vanilla kernel 3.6.0
    cat /etc/fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    # /dev/sdb2
    UUID=412194cb-8953-4d02-94b4-d25d21bd7126 / ext4 rw,relatime,barrier=0 0 1
    #/dev/sdb1
    UUID=8bc28611-e3ee-4079-b311-33b9d4a0f36a /boot ext2 rw,relatime 0 2
    #/dev/sdb3
    UUID=2d6d63e0-a59f-439f-9c11-f6673055e65a /home ext4 rw,relatime,barrier=0 0 2
    #/dev/sdc1
    UUID=60F0F9D3F0F9AF80 /mnt/share ntfs-3g umask=0 0 0
    what i have to do ?
    thanks so much. friends!
    Last edited by papu (2012-10-13 19:44:17)

  • Can't compile firefox-kde-opensuse

    So I'm trying to compile the firefox-kde-opensuse package from the AUR, but I get the following error, that I can't seem decipher.
    http://pastebin.com/kBBur8bs
    Any help figuring out what I need to do would be awesome.

    same error

  • Firefox nightly doesn't use any file associations on downloaded files

    I am using Firefox 8.0a with Gnome 3 and Shell. Chromium will open any downloaded files with the correct applications, but Firefox always asks me to locate an application to open a file with. Rather than searching through for all the correct binaries to open files with and setting them that way, is there a way to tell Firefox to always use the correct programs that have already been associated in Nautilus?
    According to https://wiki.archlinux.org/index.php/Fi … n_problems then I need to install the libgnome package, but it is already installed.
    edit: I also tried the second command on that page -
    ln -s ~/.local/share/applications/mimeapps.list ~/.local/share/applications/mimeinfo.cache
    but got this output:
    ln: failed to create symbolic link `/home/theo/.local/share/applications/mimeinfo.cache': File exists
    Last edited by themusicalduck (2011-08-16 18:39:36)

    Hi all, I've faced this problem too after installing firefox-nightly from the aur.
    I believe that problem root is that linux binaries from mozilla are built with most generic flags, so are not integrated well with Archlinux.
    I've just posted new PKGBUILD for firefox nightly that builds firefox from latest 'tip' tag from mozilla-central, linking it with system libs (except nspr and cairo, that fail build because of some bugs).
    Build process takes some time (about an hour on Core i7), but you get nightly built with almost the same flags as firefox from [communiti] as a result.
    gstreamer (H.264) support also included.

  • I can't type in games on the Metro mode of Firefox Nightly and Aurora.

    Hey there!
    So I've downloaded Firefox Nightly and Aurora, and tried out the Metro version of both programs.
    I had trouble with plugins, but after a while, I've managed to take care of it.
    With the plugins working well, I went to play some games.
    The games worked perfectly, until I noticed I can't INPUT INFORMATION!
    Kept on typing, and nothing appears on the screen.
    For example, when trying to enter a username, nothing appears!
    I tried the same way on a different gaming website, and got same results.
    I don't think it's an Adobe Flash-related problem, since I am running its latest version.
    I tried the same way in the desktop mode of Firefox Nightly and Aurora, and it worked perfectly, I can type without any hassle.
    I can't tell it's a bug, since it could be an isolated case, but in case I won't be able to solve this problem, I'll file a bug.
    Looking forward to your assistance in solving this problem.
    Thank you.

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can do a font test to see if you can identify corrupted font(s).
    *http://browserspy.dk/fonts-flash.php?detail=1
    You can try different default fonts and temporarily disable website fonts to test the selected default font.
    *Tools > Options > Content : Fonts & Colors > Advanced
    *[ ] "Allow pages to choose their own fonts, instead of my selections above"

  • I have been using Firefox 25 from past 2 months and i downloaded firefox nightly yesterday and i used it for yesterday. Today when i open the firefox either the

    Hello Support Mozilla,
    I use firefox 25 on windows 8 PC and I am using this browser from past 2 months and yesterday I downloaded firefox Nightly and then used it as a browser. Today when I start opening browser then its not opening. Does the both firefox and nightly wont work in a single PC ???? I could use Internet Explorer & Google Chrome browsers, but the firefox browser is not loading.

    You need to take care to use separate profiles when using multiple versions of Firefox.
    We will need more information about your problem but mean while maybe this general information will help. Besides telling us about any error messages please also say exactly what you have tried; to fix the problem, and whether you now have multiple Firefox profiles set up.
    * [[Firefox won't start - find solutions]]

  • Corrupt FireFox x64 zip file /firefox/nightly/2014-12-02-03-02-01-mozilla-central/firefox-37.0a1.en-US.win64-x86_64.zip

    After the download of the file "/firefox/nightly/2014-12-02-03-02-01-mozilla-central/firefox-37.0a1.en-US.win64-x86_64.zip" (and also the others like "/firefox/nightly/2014-12-02-03-02-01-mozilla-central/firefox-36.0a1.en-US.win64-x86_64.zip" from this month and last month (that I tested), there is an error when opening the file "! C:\...\Downloads\firefox-37.0a1.en-US.win64-x86_64.zip: Unexpected end of archive".
    It looks like there is corruption when creating the zip file (for a while now). I am using WinRar 4.01 x64 and I also tried with 7zip 9.20 with same result.

    Hi,
    I am using firefox (latest release 32bit) for the download from the ftp site. I also tried WinSCP and with WinSCP I get an error message lost connection at the end of the download.
    That gave me an idea ... I tried the same path download but instead of FTP:// I tried the HTTP:// and with the http protocol (for the download) it worked.
    It look that there is a problem with the ftp site on Mozilla Server.
    Someone should mention Mozilla that their FTP server need at lest a reboot , hopefully it will solve the download bug.
    Thanks!

  • Windows 10 Technical Preview 10041, Firefox Nightly x64 most current, can launch, can't access settings, cannot place cursor in URL box

    Have Windows 10 Technical Preview build 10041, Firefox Nightly x64 39.0a1 most current. Firefox will launch, but when browser appears no input to screen possible. Can't access settings, can't place cursor in URL box. Tried compatibility modes with no success. I may not have used this browser on Thursday, March 26, but it was working without issue on Wednesday, March 25. My speculation would be that one of the last two nightly updates broke this. This question posted from Chrome as Firefox not operating.

    hello, that appears to be a known bug that's being worked on ([https://bugzilla.mozilla.org/show_bug.cgi?id=1147953 bug #1147953]).
    please also note that as long as windows 10 is in it's pre-release preview state and there are still changes to the core platform, it will not be fully supported by firefox and things are bound to go wrong on occasion.

  • How to chat in Firefox Nightly

    Hello,
    Can we already chat in Firefox Nightly ?
    I have tried this, but 2 participants cannot connect. It says Room Full.
    I need encrypted p2p chat.

    What do you mean by "tried this"?
    I don't think it is encrypted, but I use https://talky.io/ to video chat using WebRTC on Nightly.
    Dos this solve your question?

  • I am getting an error which says something tried to trick firefox into updating

    I've been getting this error for some time I have switched to manual update from time to time I download Firefox Nightly and install it again. I live in Iran since my government is known for invading its citizen privacy I was worried if it is something related to them or other sources trying to modify my firefox or it is a known issue. what should I do? continue my manual download install routine or there is a fix?

    Which Firefox version do you use?
    Such an error has been mentioned in the past as being caused by the presence of leftover files in the Firefox program folder.
    *(32 bit Windows) C:\Program Files\Mozilla Firefox\
    *(64 bit Windows) C:\Program Files (x86)\Mozilla Firefox\
    You can try a clean reinstall and delete the Firefox program folder before reinstalling a fresh copy of Firefox.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 16.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    You can also try to rename or delete the prefs.js file and possible numbered prefs-##.js files and a possible user.js file to reset all prefs to the default values.
    *http://kb.mozillazine.org/Resetting_preferences
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Firefox Nightly keeps bugging me with "This Connection is Untrusted" on every single site I visit

    So I am trying out the new FireFox Nightly, as it was suggested by a friend to me. Now I am liking it at first, but when I remove all my old FireFox stuff (completely uninstalled as there was alot of useless junk/plugins/data that I wanted gone) I am now getting this "This Connection is Untrusted" message on every single site I visit! It even says that the mozilla site is dangerous. So is there any way to disable these warnings?

    Hello Rykuu, also, check the time and date of your system, if the date and time on the computer are wrong then security certificates may not be valid.
    which security software do you have (firewall or/and anti-virus)?
    thank you

Maybe you are looking for

  • ESPN HD GLITCHING

    I have my entire home theater run through a Pioneer 1021 receiver via HDMI.  The only problem I have is that ESPN HD (channel 570 here) is super glitchy about 85% of the time it's on.  No other channel has this problem (HD or not).  I've tried numero

  • Toggling for Full Screen playback

    I am having no success toggling to full screen playback in Premier Pro CS6 using ctrl+` or anything else. The onmly way I can get to full screen during playback is by going to Edit/Prefernces/Playback and ticking one of the 2 monitors (or both) that

  • Setting width of drop-down menu buttons

    Hi, I am creating a site that has two horizontal navigation bars, each of which has several submenus (drop-down menus). You can view the page here. Most of the main (parent) navigation buttons are of differing widths, for which I had to create differ

  • Something in Window 7 keeps turning off Apple Mobile Device Service?

    There is something that is interferring with my Apple Mobile Device Service froming staying on.  I have done EVERYTHING down to uninstalling ang re installing all itunes and related products and making sure I covered all folders that my have goodies

  • Query regarding moving components

    I have a JPanel (call it panel1) in another JPanel which has setlayout(null). i want to be able to "drag" around panel1 in the other panel. i used a quick method of adding a MouseMotionListener to panel1, and under mouseDrag(mouseevent e) had the pan