AIX Open Source

AIX Open Source

Share your experiences and connect with fellow developers to discover how to build and manage open source software for the AIX operating system

 View Only
  • 1.  Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Thu August 09, 2018 02:10 AM

    Originally posted by: toojays


    Just wondering if there are any blockers to getting GCC 8.2 on AIX 7.1? You only have GCC 6.3 available for AIX 7.1 right now. I'd really like to get a version with the fix for GCC bug 85907 (static libstdc++ and exceptions causes abort).



  • 2.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Thu August 09, 2018 12:35 PM

    Originally posted by: T.Rex


    Meanwhile, you can get it from here: http://www.bullfreeware.com/search.php?package=gcc&version=aix7.1



  • 3.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Fri August 10, 2018 12:20 AM

    Originally posted by: sanket


     

    We are planning to backport that fix on gcc 6.3 and publish from AIX toolbox.

    As many people want to stick to same level of gcc because of libraries provided by gcc and compatibility. 

    We are also looking to provide 8.1/8.2 on AIX 7.1 as well.



  • 4.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Fri August 10, 2018 01:03 AM

    Originally posted by: toojays


    Great, thanks sanket. Any idea when you might publish this fix?

     

    T.Rex: Thanks too for your suggestion. We are planning to ship our product built with the AIX toolbox GCC (because IBM). But at least we can try the Bull Freeware version in the meantime to check if it really fixes our bug.



  • 5.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Wed August 29, 2018 03:38 AM

    Originally posted by: T.Rex


    Beta version of golang v1.11 for AIX 7.2 / Power8,9 is now available at BullFreeware : http://www.bullfreeware.com/search.php?package=golang

    It's "beta" because there are still few tests failing and because "cgo" is not yet provided (end of October).



  • 6.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Sun October 21, 2018 07:40 AM

    Originally posted by: sanket


    gcc 6.3 and 8.1 have been published on AIX toolbox with the fix. 



  • 7.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Sun October 21, 2018 07:32 PM

    Originally posted by: toojays


    Thanks sanket. In the meantime we ended up just patching GCC ourselves, but we'd prefer to use the packages IBM provides.

    We tried your updated package today, and it hit this error compiling OpenSSL:

     

    $ gcc -I. -I.. -I../include -DOPENSSL_THREADS -pthread -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_DEPRECATED -DPURIFY -maix64 -O -DB_ENDIAN -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM -DVPAES_ASM -c -o cryptlib.o cryptlib.c
    exec(): 0509-036 Cannot load program /opt/freeware/libexec/gcc/powerpc-ibm-aix7.1.0.0/6.3.0/cc1 because of the following errors:
    0509-130 Symbol resolution failed for cc1 because:
    0509-136 Symbol _GLOBAL__AIXI_libgmp_so (number 169) is not exported from
    dependent module /usr/lib/libgmp.a(libgmp.so.10).
    0509-136 Symbol _GLOBAL__AIXD_libgmp_so (number 170) is not exported from
    dependent module /usr/lib/libgmp.a(libgmp.so.10).
    0509-192 Examine .loader section symbols with the
    'dump -Tv' command.

     

    Any ideas?



  • 8.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Mon October 22, 2018 03:07 AM

    Originally posted by: AyappanP


    Seems like you don't have gmp package installed. Please install it.



  • 9.  Re: Any chance of getting GCC 8.2 on AIX 7.1?

    Posted Mon October 22, 2018 05:46 AM

    Originally posted by: toojays


    Thanks for your reply.

    We did have gmp installed, but it turned out to be the perzl version. I have installed the IBM version instead and it looks good now.