Gcc 5.1: Failed to get gcc information.

Running vmware workstation 11 and Archlinux with gcc 5.1:
[root@dell-i7-mihamina mrakotomandimby]# vmware-modconfig --console --install-all
Failed to get gcc information.
[root@dell-i7-mihamina mrakotomandimby]#
But gcc is:
[mrakotomandimby@dell-i7-mihamina ~]$ gcc --version
gcc (GCC) 5.1.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE
What to do?

Actually, the problem is much more sinister...
I have a better Arch linux debug and resolve thread for this problem:
https://bbs.archlinux.org/viewtopic.php?id=196915
In short, recompiling the kernel using the gcc 4.9 version works.
Problem now, because arch is a rolling release, is gcc 5.1.0 is now in core - and the vmhgfs, while compiling, hard locks the VM.  I'm creating another vmware community thread for this one.  Will come back and edit this post with link.
EDIT: Here's the thread to track gcc 5.1.0 progress with VMware Tools:
Workstation 11.1, Tools 9.9.2 build-2496486: Not compatible with GCC 5.1.0 on linux (Arch, Debian, Ubuntu, etc)

Similar Messages

  • Failed to get printer information

    I have a legacy application in C++, now ported to VS 2010. All works fine, except I get an intermittent error. I'm printing a CNiReport to a pdf printer (Win2Pdf). Every so often I get an error dialog pop up with the message "failed to get printer information" and the print fails (no pdf produced). This comes from the CnIReport:rint. Unfortunately I'm trying to run my program unattended and this dialog hangs waiting to be dismissed. If I dismiss the dialog and let the program continue, it does and then may or may not get the same error on the next Print. It fails both if I pass the printer name to Print and if I pass an empty name to make it use the default printer.
    Can someone from NI confirm that the dialog is coming from CNiReport:rint and is there anything I can do to stop it? Also, why would it happen only occasionally?
    Thanks
    Phil reaston

    Hey Phil,
    Could you post a screen shot of the error dialog?
    It is uncharacteristic of NI software to have an error cause a dialog to popup. Typically an error code is returned passed and dealt with in error handling or the execution (compiling, run, etc) failing. so I am inclined to say this error is associated with the printer driver. 
    Luke W

  • ADP fail to get the information in WebLogic 10.3 version

    I have configuration ADP in Enterprise Manager 12c r2 version in linux 64 bit version
    and I can successfully get result for the weblogic server 10.3.2 version,but in customer environment they are
    spring application running in WebLogic Server 10.3.0 using sun jdk, I can get the pages they access but I can not
    get the performance data about these pages, as I using Jrockit, It can get the result.
    but if using jrockit,their applcation will down after running some times,so I want to ask does ADP support wls10.3 version and
    support sun JDK 1.6.0_14?
    Thanks for your reply.

    We only monitor SpringBeans from within ADP. If you are looking for page level metrics, I think your best bet would be to deploy Real User Experience Insight (RUEI) on the front-end with Enterprise Manager Cloud Control monitoring the back-end. JVM diagnostics should be configured as that will obviously provide a large degree of your production level diagnostics alongside RUEI, but given that this is a Spring application as opposed to an ADF, SOA, or portal application, ADP probably doesn't make much sense in regards to getting full visiblity into this environment with the exception of the SpringBeans metrics.
    Cheers,
    Glen

  • Command /Developer/usr/bin/gcc-4.2 failed with exit code 1?

    Hey everybody!
    Im new to xcode and dont have any coding experience but am trying to learn the basics by assembling and compiling a calculator app. The problem is when I try to build and run I get the error:
    Command /Developer/usr/bin/gcc-4.2 failed with exit code 1
    The debug looks like this
    Build calc of project calc with configuration Debug
    Ld build/Debug/calc.app/Contents/MacOS/calc normal x86_64
    cd "/~xcode projects~/calculator/calc"
    setenv MACOSX_DEPLOYMENT_TARGET 10.6
    /Developer/usr/bin/gcc-4.2 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk "-L/~xcode projects~/calculator/calc/build/Debug" "-F/~xcode projects~/calculator/calc/build/Debug" -filelist "/~xcode projects~/calculator/calc/build/calc.build/Debug/calc.build/Objects-normal/x86_ 64/calc.LinkFileList" -mmacosx-version-min=10.6 -framework Cocoa -o "/~xcode projects~/calculator/calc/build/Debug/calc.app/Contents/MacOS/calc"
    ld: duplicate symbol _OBJC_IVAR_$_CalcController.calc_display in /~xcode projects~/calculator/calc/build/calc.build/Debug/calc.build/Objects-normal/x86_ 64/CalcController-7806DEC6D5FE0A8E.o and /~xcode projects~/calculator/calc/build/calc.build/Debug/calc.build/Objects-normal/x86_ 64/CalcController-C97DF742AA7918D.o
    collect2: ld returned 1 exit status
    Command /Developer/usr/bin/gcc-4.2 failed with exit code 1
    Im a big newbie here and would greatly appreciate any help offered.
    Thanks!

    jerryfan23 wrote:
    ld: duplicate symbol _OBJC_IVAR_$_CalcController.calc_display in /~xcode projects~/calculator/calc/build/calc.build/Debug/calc.build/Objects-normal/x86_ 64/CalcController-7806DEC6D5FE0A8E.o and /~xcode projects~/calculator/calc/build/calc.build/Debug/calc.build/Objects-normal/x86_ 64/CalcController-C97DF742AA7918D.o
    How many places do you declare calc_display? Are you perhaps creating the variable in an include file? Try posting your code here between two lines of :

  • Xcode error  "Command /Developer/usr/bin/gcc-4.2 failed with exit code 1  "

    Hello!
    This is one of my first posts on the Mac forum. I am a 13 -year-old learning to develop apps for the iPhone.
    Right now I am having a really annoying error with Xcode;
    I can't compile any code at all.
    I tried this post in the software 101 section with no result. Sorry if a seem a bit impatient...
    I am trying to use C and Objective-C command line projects....
    This is the error code I get with all my projects;
    Command /Developer/usr/bin/gcc-4.2 failed with exit code 1
    It's not an error in the code because even if I just do a project with the code int myInt = 5;
    Thanks if you can help!

    Can you please post your entire program, perhaps the one that simply contains int myInt = 5; ?
    When a new project is created, a main.c file is created with contents:
    #include <stdio.h>
    int main (int argc, const char * argv[]) {
    // insert code here...
    printf("Hello, World!\n");
    return 0;
    This should build without error by using the Build->Build menu option.
    Replacing the printf line with int myInt = 5; compiles and executes properly although it does very little.

  • Upgrade fails because of gcc-gcj

    Full system upgrade fails because the following dependency cannot be satisfied.
    :: gcc-gcj: requires gcc=4.6.1
    Any solution?
    ty

    (sigh)
    I am still stuck;
    if I try to update (via pacman) either libtool/gcc-fortran I get that they cannot be updated because gcc-fortran/libtool and gcc-gcj need gcc 4.6.1
    if I try to update (via yaourt) gcc-gcj it says that libtool AND gcc-fortran require gcc 4.6.1 (even though gcc-gcj is up to date)
    My mirror says that gcc-fortran is at the version 4.6.2-1 and libtool at 2.4.2
    My mirror is up to date
    Basically I am stuck in a loop.
    A solution would be to uninstall gcc-gcj and reinstall it, but pdftk depends on it, and last time I installed it it took something like two hours to complete, I would like to avoid that
    Any suggestion?
    (edit: thanks for the help!)
    Last edited by miguelroboso (2011-11-01 20:56:51)

  • Installing a trial version of the Illustrator and InDesign App in Creative Cloud on my Mac is impossible. Keep getting 'Installation failed' notices. More information gives 0 fatal error(s), 0 error(s). Already repaired disk permissions in Disk Utility bu

    Installing a trial version of the Illustrator and InDesign App in Creative Cloud on my Mac is impossible. Keep getting 'Installation failed' notices. More information gives 0 fatal error(s), 0 error(s). Already repaired disk permissions in Disk Utility but nothing seems to work. Exit code: 7.

    Hi Maarton,
    Please follow the link to resolve the issue: Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    -Ankit

  • Failed to get the document information (LO 26315)

    Hi,
    I have to create an Xcelsius dashboard where I use a Live Office connection based on a WebI-report. The WebI is created on top of a BEx Query.
    I need to pass 12 parameters to the WebI-report in orde to get the correct data.
    Everything works fine in design-time, but when I want to preview the dashboard, I get the error: Failed to get the document information (LO 26315).
    After investigating the issue, I've noticed that everything works fine when the parameters I have to pass, are only created in the WebI-report. But in my case it is a BEx variable that causes the error.
    There is no possible way that I can recreate the BEx variable in the Universe (There are restricted key figures, calculated key figures and cell restrictions in the BEx query).
    My question: is there a way to pass a parameter from an Xcelsius dashboard to a WebI-report via a Live Office connection to a BEx variable?
    Lieven

    Fred,
    on the SAP Notes Search page on sdn.sap.com, you can enter the note number in a text field at the right side of the page, just above the Search Option part.
    Just enter Note 1357924 in that text field and press the blue icon with the arrows next to it. Thiw ill show the corresponding note.
    Lieven

  • Link error, gcc-4.2 failed with exit code 1

    Hi~everyone!
    I now have a question
     that when I want to put my program into iphone(not simulator) to debug, then comes the problem with the debug message below: 
    Ld build/Debug-iphoneos/TouchCells.app/TouchCells normal armv6
    cd "/Users/TouchCells 2"
    setenv IPHONEOS_DEPLOYMENT_TARGET 4.2
    setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/u sr/bin:/bin:/usr/sbin:/sbin"
    /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -arch armv6 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk "-L/Users/TouchCells 2/build/Debug-iphoneos" "-F/Users/TouchCells 2/build/Debug-iphoneos" -filelist "/Users/TouchCells 2/build/TouchCells.build/Debug-iphoneos/TouchCells.build/Objects-normal/armv6/T ouchCells.LinkFileList" -dead_strip -miphoneos-version-min=4.2 -framework Foundation -framework UIKit -framework CoreGraphics -framework QuartzCore -lSystem -o "/Users/TouchCells 2/build/Debug-iphoneos/TouchCells.app/TouchCells"
    ld: warning: symbol dyld_stub_binder not found, normally in libSystem.dylib
    Assertion failed: (targetAtom != NULL), function Fixup, file /SourceCache/ld64/ld64-123.3/src/ld/ld.hpp, line 393.
    0  0x13886  __assert_rtn + 86
    1  0x11e67a  ld::passes::stubs::arm::StubHelperAtom::helperHelper(ld::passes::stubs::Pass&) + 874
    2  0x11e76d  ld::passes::stubs::arm::LazyPointerAtom::LazyPointerAtom(ld::passes::stubs::Pas s&, ld::Atom const&, bool, bool, bool, bool) + 189
    3  0x1198e2  ld::passes::stubs::Pass::makeStub(ld::Atom const&, bool) + 4146
    4  0x11a2a5  ld::passes::stubs::Pass::process(ld::Internal&) + 2005
    5  0x11a803  ld::passes::stubs::doPass(Options const&, ld::Internal&) + 131
    6  0x1504d  main + 957
    collect2: ld returned 1 exit status
    Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1
    Everything works fine in simulator.
    Any suggestion is appreciated! Thanks a lot!

    I've found the problem that is my system have a incompatible file named libSystem.dylib, so I replace the file with a copy of the correct file from my colleague. That fix my problem.

  • Cannot access external data , Failed to get the document information.

    Hi All,
    In my dashboard there are live office connections which has optional prompts defined in SAP BI. I have bound the cells to these prompts in live office object properties.
    There are no errors while refreshing the LO connections from excel sheet.
    But when i run that dashboard and give BLANK value for that prompt then it throws the error :
    Cannot access external data , Failed to get the document information. (LO 26315).
    Reply highly appreciated.
    Thanks & Regards,
    DJ

    Hi Hardik,
    I am building a similar solution as yours connecting webi reports to Bex queries and reading the webi data through live office into the dashboards. I am using almost similar versions as yours - BW 7.1 SP5, BO 4.1 SP4, Dashboards and Live Office SP4 versions. I am facing issues setting up the live office connections itself. I create the Live office connections within an excel and when I try to import this excel spreadsheet into my dashboard designer, it runs forever and crashes.
    Could you please list out the steps you performed to get the Dashboard to preview live office data? Do you have OLAP connections for BW cubes and created WebI reports using these connections or You created a Universe on top of the Bex Queries?
    It would be great if you could share the steps performed.
    With respect to your issue, check if the report engine service is running. Do you have any error message details apart from this error?
    Thanks.
    Regards,
    Rohini.

  • IPhone+Twitter+LinkedIn+Facebook Error : gcc-4.2 failed with exit code 1

    HI All
    I am using MGTwitterEngine oAuth and LinkedIn iOS sdk in my Iphone application with facebook-ios-sdk
    TwitterEngine : https://github.com/bengottlieb/Twitter-OAuth-iPhone
    LinkedInIphone : https://github.com/ResultsDirect/LinkedIn-iPhone
    Both integrated well separately, But when I have used both in application then error coming
    FB + Twitter = working well
    FB + LinkedIn = Working Well
    FB + Twitter + LinkedIn = Not Working
    and giving error
    Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1
    Please help me where I am wrong.
    _+*Error Transcript Text File*+_
    Build butterfli of project butterfli with configuration Debug
    Ld build/Debug-iphonesimulator/butterfli.app/butterfli normal i386
    cd /Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli
    setenv MACOSXDEPLOYMENTTARGET 10.6
    setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr /bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk -L/Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/build/Debug-iphonesimulator "-L/Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/Twitter+OAuth/Libraries & Headers" -F/Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/build/Debug-iphonesimulator -filelist /Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/build/butterfli.build/Debug-iphonesimulator/butterfli.build/Objects-no rmal/i386/butterfli.LinkFileList -mmacosx-version-min=10.6 -all_load -Xlinker -objcabiversion -Xlinker 2 -framework Foundation -framework UIKit -framework CoreGraphics -lOAuth -lxml2 /Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/LinkedInClientLibrary/build/Debug-iphonesimulator/libLinkedInClientLib rary.a -o /Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/build/Debug-iphonesimulator/butterfli.app/butterfli
    ld: duplicate symbol _EstimateBas64EncodedDataSize in /Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/LinkedInClientLibrary/build/Debug-iphonesimulator/libLinkedInClientLib rary.a(Base64Transcoder.o) and /Users/pratgupta/Desktop/Settinglinkedin/10marbutterfli/Twitter+OAuth/Libraries & Headers/libOAuth.a(Base64Transcoder.o)
    collect2: ld returned 1 exit status
    Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1
    Some discussion on the Issue here http://stackoverflow.com/questions/5259747
    Amit Battan
    Message was edited by: amitbattan
    Message was edited by: amitbattan

    I done one thing that is ...
    I remove the library files of linkedin sdk.. and add the source files of it with oAuth files from twiiter sdk... then it works ok for linkedin
    i.imgur.com/cXLXU.png
    i.imgur.com/ntV9G.png
    then I integrate all twitter code then project run ok without error but for twitter login interface it shows "PAGE NOT FOUND" ..
    i.imgur.com/8a1ua.png

  • Trying to update Photoshop 5 Camera Raw. Get message installation failed. No other information. Please advise.

    Trying to update Photoshop 5 Camera Raw. Get message installation failed. No other information. Please advise. Running Windows 7 64 bit on Dell Precision m4500. 8G 500G. Is there an alternative way to update the camera profiles in ACR. I am trying to add a Nikon D750 and Canon Powershot G15.

    you can update ps cs5 manually:, http://www.adobe.com/downloads/updates/
    but you can only update to cr 6.7 and that camera needs 8.7 or better.
    your options are to upgrade your ps or use the dng converter, Adobe - Adobe Camera Raw and DNG Converter : For Windows : Adobe DNG Converter 8.7

  • Building gcc 4.2 failed

    Hi there.
    Building gcc 4.2 on Solaris 10 on x86 failed:
    => ./configure prefix=/rwthfs/rz/SW/UTIL.common/gcc/4.2/i86pc-pc-solaris2.10 with-gmp=/rwthfs/rz/SW/UTIL.common/gcc/gmp/i86pc-pc-solaris2.10 with-mpfr=/rwthfs/rz/SW/UTIL.common/gcc/mpfr/i86pc-pc-solaris2.10 enable-language
    s=c,c++,fortran
    => gmake
    /rwthfs/rz/cluster/work/ct747764/gcc-4.2.0/host-i386-pc-solaris2.10/gcc/xgcc -B/rwthfs/rz/cluster/work/ct747764/gcc-4.2.0/host-i386-pc-solaris2.10/gcc/ -B/rwthfs/rz/SW/UTIL.common/gcc/4.2/i86pc-pc-solaris2.10/i386-pc-solaris2.10/bin/ -B/rwthfs/rz/SW/UTIL.common/gcc/4.2/i86pc-pc-solaris2.10/i386-pc-solaris2.10/lib/ -isystem /rwthfs/rz/SW/UTIL.common/gcc/4.2/i86pc-pc-solaris2.10/i386-pc-solaris2.10/include -isystem /rwthfs/rz/SW/UTIL.common/gcc/4.2/i86pc-pc-solaris2.10/i386-pc-solaris2.10/sys-include -O2 -O2 -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -I. -I. -I../.././gcc -I../.././gcc/. -I../.././gcc/../include -I./../intl -I../.././gcc/../libcpp/include -I/rwthfs/rz/SW/UTIL.common/gcc/gmp/i86pc-pc-solaris2.10/include -I/rwthfs/rz/SW/UTIL.common/gcc/mpfr/i86pc-pc-solaris2.10/include -I../.././gcc/../libdecnumber -I../libdecnumber -m64 -fexceptions -c ../.././gcc/unwind-dw2.c -o libgcc/amd64/unwind-dw2.o
    In file included from ./gthr-default.h:1,
    from ../.././gcc/gthr.h:114,
    from ../.././gcc/unwind-dw2.c:42:
    ../.././gcc/gthr-posix.h: In function '__gthread_active_p':
    ../.././gcc/gthr-posix.h:167: warning: missing braces around initializer
    ../.././gcc/gthr-posix.h:167: warning: (near initialization for '__gthread_active_once.__pthread_once_pad')
    ../.././gcc/unwind-dw2.c: In function 'uw_init_context_1':
    ../.././gcc/unwind-dw2.c:1417: warning: missing braces around initializer
    ../.././gcc/unwind-dw2.c:1417: warning: (near initialization for 'once_regsizes.__pthread_once_pad')
    Assembler: unwind-dw2.c
    "/tmp/ct747764/28859@sunoc63/cccuzz5d.s", line 396 : Warning: Illegal subtraction - symbols from different sections: ".L63", ".L73"
    "/tmp/ct747764/28859@sunoc63/cccuzz5d.s", line 6366 : Warning: Illegal subtraction - symbols from different sections: ".LFB69", ".DOT-65"
    "/tmp/ct747764/28859@sunoc63/cccuzz5d.s", line 391 : Illegal subtraction - symbols from different sections: ".L72", ".L73"
    gmake[4]: *** [libgcc/amd64/unwind-dw2.o] Error 1
    gmake[4]: Leaving directory `/rwthfs/rz/cluster/work/ct747764/gcc-4.2.0/host-i386-pc-solaris2.10/gcc'
    gmake[3]: *** [stmp-multilib] Error 2
    gmake[3]: Leaving directory `/rwthfs/rz/cluster/work/ct747764/gcc-4.2.0/host-i386-pc-solaris2.10/gcc'
    gmake[2]: *** [all-stage1-gcc] Error 2
    gmake[2]: Leaving directory `/rwthfs/rz/cluster/work/ct747764/gcc-4.2.0'
    gmake[1]: *** [stage1-bubble] Error 2
    gmake[1]: Leaving directory `/rwthfs/rz/cluster/work/ct747764/gcc-4.2.0'
    gmake: *** [all] Error 2
    => uname -a
    SunOS sunoc63.rz.RWTH-Aachen.DE 5.10 Generic_118855-36 i86pc i386 i86pc
    Has anybody been successfull building gcc 4.2 on Solaris 10 x86 and a solution for this issue?
    Thank you in advance,
    Christian

    I found the solution myself and will shortly summarize it here to complete the thread.
    (1) Use GNU as and non-GNU ld, so add "--with-gnu-as --with-as=/usr/sfw/bin/gas --without-gnu-ld --with-ld=/usr/ccs/bin/ld" to the configure command line. After I worked this out I found it noted on the build instruction website, RTFM proved to be useful again. :-)
    (2) At some point the compilation aborted because directory stage3-gcc could not be found, so I had to do "ln -s stage3-i386-pc-solaris2.10 stage3-gcc". Maybe this can be avoided with some other configure options, but this workaround was fine for me.
    (3) In order to use my own versions of gmp and mpfr, I had to add their library directory to the LD_LIBRARY_PATH environment variable (--with-gmp= and --with-mpfr= are not sufficient).
    Kind regards,
    Christian

  • Failed to get information fro MP: 80072ee7

    I am getting the error within my SMSTS.log file when trying to push a new image in our lab environment.  I have read others but everyone is using PXE boot or some sort and it comes down to DNS and DHCP.  However, in my environment that I am using
    we don't have DHCP.  I have created a custom network boot disk that I have done in the past at other locations.  I manually enter the network information.   Within a few seconds I get the standard Failed to Run Task Sequence.  When
    I hit F8 and bring up the smsts.log file I have an error Failed to get information fro MP: [MP Server.FQDN.example]  80072ee7.
    I can ping our DNS server just fine.  I can ping the IP, the NetBIOS name, and the FQDN of my Management point from the command line within WinPE just fine.  From the management point server itself I can go to
    http://localhost, http://netbiosname, and http://FQDN and get the standard IIS 8 logo. Since I am not look using PXE I can't check logs on that component. 
    And since it doesn't communicate with management point I don't think I can see anything from the Site server logs anyway.
    For the kicks I have checked the History of a task sequence deployment on a computer report and it comes up blank.
    Any suggestions?

    Jason,
    My bet is on what you just mentioned.  The comapny I was at had internal firewalls on top of firewalls...  :)   The biggest pain in my neck was trying to get ports opened correctly between subnets, etc.  I will have them check that
    and get back to me.  I am no longer there as of this week and the hard part is the guy that will take over those roles is a little green when it comes to SCCM 2012.  He is smart and I have no doubt he will pick it up but still it might take a while
    and many back and forth emails.
    Thanks,
    Kris

  • [SOLVED] Pacman upgrade failed because of gcc-libs

    I have the multilib version of gcc installed in my 64 bit system. Ten minutes ago I tried to upgrade with pacman -Syu and I got:
    :: I seguenti pacchetti dovrebbero essere aggiornati prima :
    pacman
    :: Vuoi annullare l'operazione corrente
    :: e aggiornare adesso questi pacchetti? [S/n]
    risoluzione delle dipendenze in corso...
    ricerca dei conflitti in corso...
    :: gcc-libs e gcc-libs-multilib vanno in conflitto. Vuoi rimuovere gcc-libs-multilib? [s/N] n
    errore: sono stati rilevati dei conflitti irrisolvibili
    errore: impossibile eseguire l'operazione richiesta (dipendenze in conflitto)
    :: gcc-libs e gcc-libs-multilib vanno in conflitto
    It is in italian, but basically it complains about a conflict between the installed gcc-libs-multilib and the needed gcc-libs. gcc-libs-multilib provides gcc-libs, so why this kind of error? I thought my mirror could be out of sync but I get the same error also using mirrors.kernel.org.
    Am I doing something wrong?
    Last edited by snack (2012-02-18 17:30:59)

    I did mean 'search the forums':
    * https://bbs.archlinux.org/viewtopic.php?pid=1045658
    * https://bbs.archlinux.org/viewtopic.php?pid=1049681
    * https://bbs.archlinux.org/viewtopic.php?pid=1057624
    * https://bbs.archlinux.org/viewtopic.php?pid=1054861
    * https://bbs.archlinux.org/viewtopic.php?pid=1057459
    * https://bbs.archlinux.org/viewtopic.php?id=134397

Maybe you are looking for

  • What's wrong with my browsers?

    When i first got my macbook the internet was going really slow but then i changed the dns server to 4.2.2.2 and sometimes change it to 4.2.2.1 and the internet got better but now my browsers are acting funny. One moment i'm surfing webpages with safa

  • How can I hide the class file ??

    Hi ! I has a question, when i write a program of Java, then use the command "javac" to compiler to class file for other people using, but the class file can be disassembled and convert to source code. How can I hide the class file and let people can

  • Can't download from the Mac app store

    Hi,  I was wondering if anyone else is having this issue. Anytime I try to download an app free or paid from the mac app store it goes to my doc but it doesn't download it just sits there and says it's waiting. also when I have an update for an app I

  • Aperture won't export : Retina MacBook Pro

    I've been struggling with getting all sorts of basic stuff to work on my supposedly top spec 15" Retina MacBook Pro, the latest is that it can't seem to export from  Aperture.  Finder really slow, attaching files to emails takes ages to open etc - so

  • DaqMX & TDMS Logging - No Datestamp and dt until Close

    In our application, we are continuously logging data to a TDMS file using the "DaqMX Configure Logging (TDMS).vi". However, there are times when we need to look at the TDMS data while the application is still running (i.e. when a failure is found). W