I’m trying to build precimonious on Ubuntu 16.04.3 x64. I allocated 1GB memory for it. My file structure looks like
~
|--- llvm/
|--- precimonious/
where the llvm is on version 3.0 as mentioned at https://github.com/corvette-berkeley/precimonious#requirement. Then I followed the steps on the README but command make
ended with
...
llvm[1]: Linking Debug Shared Library libLLVM-3.0.so
collect2: fatal error: ld terminated with signal 9 [Killed]
compilation terminated.
...
I went through some answers online and they say it might because there’s not enough memory to perform the link. But the memory usage is like
The gcc version on my machine is gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4)
and was installed via apt-get install build-essential
. This is a fresh droplet I just created on DigitalOcean btw. Any help is appreciated.
asked Sep 17, 2017 at 1:04
It is memory exhaustion. The sampling interval for the memory measurement is just not small enough that it covers the exact point where the OOM killer kicks in.
Depending on the container/VM technology, you may be able to set vm.overcommit_memory=2
before the build, so that the process is not killed (but doing so actually requires more memory and swap space to get the build to complete).
answered Sep 17, 2017 at 11:49
Florian WeimerFlorian Weimer
31k3 gold badges43 silver badges84 bronze badges
1
I had this problem, and solved by:
- Increase
SWAP
disk (8 GB working with me). - Increase Memory (I was on virtual machine, 8 GB).
- You need
27 GB
(LLVM 6.0.0) free disk space (check withdf -h
in Terminal).
answered Dec 21, 2019 at 14:26
houssamhoussam
1,81315 silver badges27 bronze badges
1
you can solve this issue by using :
cargo run --release --verbose --jobs 1
answered Jun 18, 2021 at 7:53
RishikeshRishikesh
1531 silver badge9 bronze badges
2
Sometimes system kills linker due to CPU overload. If your build is parallel, try -l
option (make and ninja support it). Looks similar to your case.
To decrease system load, build release version of llvm. Linking of debug version is much more expensive.
llvm[1]: Linking Debug Shared Library libLLVM-3.0.so
answered Sep 14, 2018 at 17:10
KernelPanicKernelPanic
1013 silver badges7 bronze badges
I had the same error while installing snort on the Ubuntu inside a virtual box with 2 GB of RAM. I increased the RAM to 4 GB and it worked for me.
answered Oct 20, 2021 at 15:27
DawidDawid
3651 silver badge12 bronze badges
What you were trying to do (and why)
I just trying to install erlang
and elixir
(in this case llvm
, dependency).
What happend(include command output)
==> cmake -G Unix Makefiles /tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src -DCMAKE_C_FLAGS_RELEASE=-DNDEBUG -DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG -DCMAKE_INST ==> make Last 15 lines from /home/algorist/.cache/Homebrew/Logs/llvm/02.make: cd /tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers && /home/linuxbrew/.linuxbrew/opt/gcc/bin/g++ -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_OBJC_REWRITER -DCLANG_ENABLE_STATIC_ANALYZER -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/lib/StaticAnalyzer/Checkers -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/include -I/tmp/llvm-20170707-2909-229ymp/tools/clang/include -I/tmp/llvm-20170707-2909-229ymp/include -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/include -fPIC -fvisibility-inlines-hidden -Wall -W -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wno-maybe-uninitialized -Wdelete-non-virtual-dtor -Wno-comment -Werror=date-time -std=c++11 -ffunction-sections -fdata-sections -fno-common -Woverloaded-virtual -fno-strict-aliasing -DNDEBUG -o CMakeFiles/clangStaticAnalyzerCheckers.dir/VLASizeChecker.cpp.o -c /tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp [ 72%] Building CXX object tools/clang/lib/StaticAnalyzer/Checkers/CMakeFiles/clangStaticAnalyzerCheckers.dir/ValistChecker.cpp.o cd /tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers && /home/linuxbrew/.linuxbrew/opt/gcc/bin/g++ -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_OBJC_REWRITER -DCLANG_ENABLE_STATIC_ANALYZER -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/lib/StaticAnalyzer/Checkers -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/include -I/tmp/llvm-20170707-2909-229ymp/tools/clang/include -I/tmp/llvm-20170707-2909-229ymp/include -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/include -fPIC -fvisibility-inlines-hidden -Wall -W -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wno-maybe-uninitialized -Wdelete-non-virtual-dtor -Wno-comment -Werror=date-time -std=c++11 -ffunction-sections -fdata-sections -fno-common -Woverloaded-virtual -fno-strict-aliasing -DNDEBUG -o CMakeFiles/clangStaticAnalyzerCheckers.dir/ValistChecker.cpp.o -c /tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp [ 72%] Building CXX object tools/clang/lib/StaticAnalyzer/Checkers/CMakeFiles/clangStaticAnalyzerCheckers.dir/VirtualCallChecker.cpp.o cd /tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers && /home/linuxbrew/.linuxbrew/opt/gcc/bin/g++ -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_OBJC_REWRITER -DCLANG_ENABLE_STATIC_ANALYZER -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/lib/StaticAnalyzer/Checkers -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/include -I/tmp/llvm-20170707-2909-229ymp/tools/clang/include -I/tmp/llvm-20170707-2909-229ymp/include -I/tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/include -fPIC -fvisibility-inlines-hidden -Wall -W -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wno-maybe-uninitialized -Wdelete-non-virtual-dtor -Wno-comment -Werror=date-time -std=c++11 -ffunction-sections -fdata-sections -fno-common -Woverloaded-virtual -fno-strict-aliasing -DNDEBUG -o CMakeFiles/clangStaticAnalyzerCheckers.dir/VirtualCallChecker.cpp.o -c /tmp/llvm-20170707-2909-1mqja1w/llvm-4.0.1.src/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp [ 72%] Linking CXX static library ../../../../../lib/libclangStaticAnalyzerCheckers.a cd /tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers && /home/linuxbrew/.linuxbrew/Cellar/cmake/3.8.2/bin/cmake -P CMakeFiles/clangStaticAnalyzerCheckers.dir/cmake_clean_target.cmake cd /tmp/llvm-20170707-2909-229ymp/tools/clang/lib/StaticAnalyzer/Checkers && /home/linuxbrew/.linuxbrew/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/clangStaticAnalyzerCheckers.dir/link.txt --verbose=1 /home/linuxbrew/.linuxbrew/bin/ar qc ../../../../../lib/libclangStaticAnalyzerCheckers.a CMakeFiles/clangStaticAnalyzerCheckers.dir/AllocationDiagnostics.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/AnalysisOrderChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/AnalyzerStatsChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ArrayBoundChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ArrayBoundCheckerV2.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/BasicObjCFoundationChecks.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/BlockInCriticalSectionChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/BoolAssignmentChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/BuiltinFunctionChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CStringChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CStringSyntaxChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CallAndMessageChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CastSizeChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CastToStructChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CheckObjCDealloc.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CheckObjCInstMethSignature.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CheckSecuritySyntaxOnly.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CheckSizeofPointer.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CheckerDocumentation.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ChrootChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ClangCheckers.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CloneChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ConversionChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/CXXSelfAssignmentChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DeadStoresChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DebugCheckers.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DereferenceChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DirectIvarAssignment.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DivZeroChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DynamicTypePropagation.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/DynamicTypeChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ExprInspectionChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/FixedAddressChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/GenericTaintChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/GTestChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/IdenticalExprChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/IteratorPastEndChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/IvarInvalidationChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/LLVMConventionsChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/LocalizationChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MacOSKeychainAPIChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MacOSXAPIChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MallocChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MallocOverflowSecurityChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MallocSizeofChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MPI-Checker/MPIBugReporter.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MPI-Checker/MPIChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/MPI-Checker/MPIFunctionClassifier.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/NSAutoreleasePoolChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/NSErrorChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/NoReturnFunctionChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/NonNullParamChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/NullabilityChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/NumberObjectConversionChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCAtSyncChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCContainersASTChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCContainersChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCMissingSuperCallChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCPropertyChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCSelfInitChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCSuperDeallocChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ObjCUnusedIVarsChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/PaddingChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/PointerArithChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/PointerSubChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/PthreadLockChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/RetainCountChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ReturnPointerRangeChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ReturnUndefChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/SimpleStreamChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/StackAddrEscapeChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/StdLibraryFunctionsChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/StreamChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/TaintTesterChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/TestAfterDivZeroChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/TraversalChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UndefBranchChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UndefCapturedBlockVarChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UndefResultChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UndefinedArraySubscriptChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UndefinedAssignmentChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UnixAPIChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/UnreachableCodeChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/VforkChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/VLASizeChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/ValistChecker.cpp.o CMakeFiles/clangStaticAnalyzerCheckers.dir/VirtualCallChecker.cpp.o /home/linuxbrew/.linuxbrew/bin/ranlib ../../../../../lib/libclangStaticAnalyzerCheckers.a make[2]: Leaving directory '/tmp/llvm-20170707-2909-229ymp' [ 72%] Built target clangStaticAnalyzerCheckers make[1]: Leaving directory '/tmp/llvm-20170707-2909-229ymp' Makefile:154: recipe for target 'all' failed make: *** [all] Error 2 READ THIS: https://github.com/Linuxbrew/brew/blob/master/docs/Troubleshooting.md#troubleshooting Please do not report this issue to Homebrew/brew or Homebrew/core, which support macOS only. These open issues may also help: llvm: strip executables/libraries/object files https://github.com/Linuxbrew/homebrew-core/pull/3163 llvm: add bottle 4.0.1 for Linuxbrew https://github.com/Linuxbrew/homebrew-core/pull/3144 ldc: undefined reference to llvm::cl::Option::setArgStr https://github.com/Linuxbrew/homebrew-core/issues/441
https://gist.github.com/anonymous/8712ed72f321c5947a9f498fd936b1a2
What you expected to happen
Install without any issue.
(I think there’s no problem few days ago, maybe llvm 4.0.0)
And I followed @sjackman ‘s instruction on #3113, and applied #1771 but it doesn’t help.
Please help!
Please always follow these steps:
- Confirmed this is a problem with
brew install
ing one, specific formula and not every time you runbrew
? If it’s a generalbrew
problem please file this issue at https://github.com/Linuxbrew/brew/issues/new. - Attempt to replicate the problem on macOS with Homebrew if possible. If you can replicate the problem on macOS with Homebrew, please report the issue to Homebrew/core. If you are unsure, please report the issue to Linuxbrew.
- Ran
brew update
and retried your prior step? - Ran
brew doctor
, fixed all issues and retried your prior step? - [ x Ran
brew gist-logs <formula>
(where<formula>
is the name of the formula that failed) and included the output link? - If
brew gist-logs
didn’t work: ranbrew config
andbrew doctor
and included their output with your issue?
Please note we will close your issue without comment if you delete or do not fill out the issue checklist and provide ALL the requested information.
To help us debug your issue please explain:
- What you were trying to do (and why)
- What happened (include command output)
- What you expected to happen
- Step-by-step reproduction instructions (by running
brew install
commands)
- Forum
- Qt
- Installation and Deployment
- collect2: ld terminated with signal 9 [Killed]
-
collect2: ld terminated with signal 9 [Killed]
I am trying to build qt-4.4 and it fails with the following error:
collect2: ld terminated with signal 9 [Killed]
make[1]: *** [../../../../lib/libQtWebKit.so.4.4.0] Error 1
make[1]: Leaving directory `/var/tmp/build-i686-linux/src/3rdparty/webkit/WebCore’
make: *** [sub-webkit-make_default-ordered] Error 2I read some where that it is due to low memory. Can some one tell me how to resolve it?
-
Re: collect2: ld terminated with signal 9 [Killed]
Do you need webkit? What if you disable it with «./configure -no-webkit»?
J-P Nurmi
-
Re: collect2: ld terminated with signal 9 [Killed]
Bookmarks
Bookmarks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
- BB code is On
- Smilies are On
- [IMG] code is On
- [VIDEO] code is On
- HTML code is Off
Forum Rules
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.
Fails to compile on several trials, with and without distcc here on my Atom-Netbook (~x86) arch. Builds fine with the same use-flags on an other ~amd64 PC here. collect2: ld terminated with signal 9 [Killed] distcc[4360] ERROR: compile (null) on localhost failed make[5]: *** [libxul.so] Error 1 make[5]: Leaving directory `/var/tmp/portage/www-client/firefox-14.0.1/work/mozilla-release/obj-i686-pc-linux-gnu/toolkit/library' make[4]: *** [libs_tier_platform] Error 2 make[4]: Leaving directory `/var/tmp/portage/www-client/firefox-14.0.1/work/mozilla-release/obj-i686-pc-linux-gnu' make[3]: *** [tier_platform] Error 2 make[3]: Leaving directory `/var/tmp/portage/www-client/firefox-14.0.1/work/mozilla-release/obj-i686-pc-linux-gnu' make[2]: *** [default] Error 2 make[2]: Leaving directory `/var/tmp/portage/www-client/firefox-14.0.1/work/mozilla-release/obj-i686-pc-linux-gnu' make[1]: *** [realbuild] Error 2 make[1]: Leaving directory `/var/tmp/portage/www-client/firefox-14.0.1/work/mozilla-release' make: *** [build] Error 2 emake failed * ERROR: www-client/firefox-14.0.1 failed (compile phase): * emake failed * * Call stack: * ebuild.sh, line 85: Called src_compile * environment, line 6858: Called die * The specific snippet of code: * CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" MOZ_MAKE_FLAGS="${MAKEOPTS}" emake -f client.mk || die "emake failed"; *
emerge --info =www-client/firefox-14.0.1 Portage 2.2.0_alpha121 (default/linux/x86/10.0/desktop/kde, gcc-4.6.3, glibc-2.15-r2, 3.5.0-gentoo i686) ================================================================= System Settings ================================================================= System uname: Linux-3.5.0-gentoo-i686-Intel-R-_Atom-TM-_CPU_N270_@_1.60GHz-with-gentoo-2.1 Timestamp of tree: Sun, 12 Aug 2012 13:00:01 +0000 distcc 3.1 i686-pc-linux-gnu [enabled] app-shells/bash: 4.2_p37 dev-java/java-config: 2.1.12 dev-lang/python: 2.7.3-r2, 3.2.3-r1 dev-util/cmake: 2.8.8-r3 dev-util/pkgconfig: 0.27 sys-apps/baselayout: 2.1-r1 sys-apps/openrc: 0.10.5 sys-apps/sandbox: 2.6 sys-devel/autoconf: 2.13, 2.69 sys-devel/automake: 1.9.6-r3, 1.11.6, 1.12.2 sys-devel/binutils: 2.22.90 sys-devel/gcc: 4.6.3 sys-devel/gcc-config: 1.7.3 sys-devel/libtool: 2.4.2 sys-devel/make: 3.82-r3 sys-kernel/linux-headers: 3.5 (virtual/os-headers) sys-libs/glibc: 2.15-r2 Repositories: gentoo Installed sets: @system ACCEPT_KEYWORDS="x86 ~x86" ACCEPT_LICENSE="*" CBUILD="i686-pc-linux-gnu" CFLAGS="-march=atom -O2 -fomit-frame-pointer -pipe -mfpmath=sse" CHOST="i686-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo" CXXFLAGS="-march=atom -O2 -fomit-frame-pointer -pipe -mfpmath=sse" DISTDIR="/usr/portage/distfiles" EMERGE_DEFAULT_OPTS="--quiet-build=n --autounmask-write" FCFLAGS="-O2 -march=i686 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distcc distlocks ebuild-locks fixlafiles news parallel-fetch parse-eapi-ebuild-head preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch" FFLAGS="-O2 -march=i686 -pipe" GENTOO_MIRRORS="http://gentoo.tiscali.nl/ http://ftp.uni-erlangen.de/pub/mirrors/gentoo http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/" LANG="de_DE.UTF-8" LC_ALL="" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="de" MAKEOPTS="-j5" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages" PORTAGE_TMPDIR="/var/tmp" PORTDIR="/usr/portage" PORTDIR_OVERLAY="" SYNC="rsync://rsync.gentoo.org/gentoo-portage" USE="7Zip X a52 aac aalib acl acpi akonadi alsa apng asf audiofile bash-completion berkdb branding bzip2 cairo cdda cdr cjk cli consolekit cracklib crypt css cups cxx dbus declarative dga dhcpcd djvu dlloader dri drm dts dv dvd dvdr dvdread dvi emboss enca encode exif extras fame fat ffmpeg fftw firefox firefox3 flac flash fontconfig fortran ftp g3dvl gallium gbm gdbm gif git gles gles1 gles2 glib gphoto2 gpm graphviz gs gstreamer gtk iconv icq imap intel ipv6 irc jabber java jpeg kde kexiv2 kipi kpathsea lame laptop lcms ldap lensfun libcaca libclamav libnotify libsamplerate libv4l libv4l2 liemikuutio lirc live llvm lm_sensors lzma lzo mad mainmenuhooks matroska metric minizip mjpeg mmx mng modemmanager modules mp3 mp4 mpeg mplayer msn mudflap musepack mysql nas ncurses network networkmanager nfsv4 nfsv41 nls nptl nsplugin nss ntfs ntp ogg ogm okular openal opengl openmp openssl openstreetmap openvg optimization osdmenu osmesa pam pango parted pastebin pcm pcre pdf pdfimport phonon plasma player plugin pm-utils pmu png pnm policykit pop postproc ppds ppp pppd prison privacy python python3 qalculate qt qt3support qt4 quicktime rar raw readline recode recording redeyes rle rss rtmp rtsp scanner schroedinger script sdk sdl sdl-image sdl-sound secure-delete semantic-desktop server session sftp shine shorten shout sift skype smp sms sna sndfile soundextract speech speex spell sql sse sse2 ssl ssse3 startup-notification stk stream strigi svg syncearly tcpd templates tga theora threads thumbnail tiff toolame transcode tremor truetype twolame udev udisks umfpack unicode upower urlpicpreview usb utils v4l v4l2 vaapi vamp vcd vcdinfo vcdx video virtuoso vlm vorbis vpx vxml wav wavpack webcam webdav webkit webpresence win32codecs winbind windeco wma wma-fixed wmf wxwidgets x264 x86 xanim xcb xcomposite xine xinerama xml xorgmodule xpm xprint xscreensaver xsl xslt xv xvid xvmc xwax_decoders_aac xwax_decoders_cd xwax_decoders_flac xwax_decoders_misc xwax_decoders_mp3 xwax_decoders_ogg yaepg yahoo youtube yv12 zip zlib" ALSA_CARDS="hda-intel loopback virmidi" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump" CAMERAS="*" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx" INPUT_DEVICES="evdev synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de" LIRC_DEVICES="devinput" PHP_TARGETS="php5-3" PYTHON_TARGETS="python3_2 python2_7" RUBY_TARGETS="ruby18 ruby19" USERLAND="GNU" VIDEO_CARDS="intel i915" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CPPFLAGS, CTARGET, INSTALL_MASK, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON emerge -pqv =www-client/firefox-14.0.1 [ebuild U ] www-client/firefox-14.0.1 [13.0] USE="alsa dbus gstreamer%* ipc jit libnotify minimal startup-notification webm -bindist -custom-cflags -custom-optimization -debug -pgo (-selinux) -system-sqlite -wifi (-crashreporter%*)" LINGUAS="de -af -ak -ar -as -ast -be -bg -bn_BD -bn_IN -br -bs -ca -cs -csb -cy -da -el -en_GB -en_ZA -eo -es_AR -es_CL -es_ES -es_MX -et -eu -fa -fi -fr -fy_NL -ga_IE -gd -gl -gu_IN -he -hi_IN -hr -hu -hy_AM -id -is -it -ja -kk -km% -kn -ko -ku -lg -lt -lv -mai -mk -ml -mr -nb_NO -nl -nn_NO -nso -or -pa_IN -pl -pt_BR -pt_PT -rm -ro -ru -si -sk -sl -son -sq -sr -sv_SE -ta -ta_LK -te -th -tr -uk -vi -zh_CN -zh_TW -zu"
The snippet is a couple lines too short, but if I'm reading it right, it's not really a bug. Linking of libxul needs *a lot* of free memory - this looks like linking getting killed due to running out of it.
Thanks for the hint and the fast response. I will try it later to save some RAM or add a swap or compile it on an other Machine in a chroot enviroment. I wasn't able to add the whole build.log cause its 8,6 Mib, nor to upload it to paste.bin. Tried to add also the last two pages into a text box, while you're writing your fist comment, but also too much lines of text :-( Come back later with more results after trying what you say. Many thanks.
collect2: ld terminated with signal 9 [Killed] You ran out of RAM. The usual fixes: 1) Install more RAM. 2) Remove -pipe from CFLAGS. 3) Set MAKEOPTS=-j1. 4) Install more RAM. |