Package Details: gcc48 4.8.5-1

Git Clone URL: https://aur.archlinux.org/gcc48.git (read-only, click to copy)
Package Base: gcc48
Description: The GNU Compiler Collection - C and C++ frontends (4.8.x)
Upstream URL: http://gcc.gnu.org
Licenses: custom, GPL-2.0-only, LGPL-2.1-only, GPL-3.0-only, LGPL-3.0-only, GFDL-1.3-or-later
Submitter: ftschindler
Maintainer: severach
Last Packager: severach
Votes: 12
Popularity: 0.000015
First Submitted: 2014-05-06 16:14 (UTC)
Last Updated: 2025-01-17 05:39 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

ftschindler commented on 2015-01-06 20:35 (UTC)

Sorry for the late reply. The dependency is there bc. I just adapted the gcc46 PKGBUILD. So I can not tell you if or for what it is needed. Perhaps you can report your findings, e.g. if you were able to successfully build the package without gcc-ada?

doragasu commented on 2014-12-22 13:52 (UTC)

Why the dependency on doxygen and gcc-ada. I'm trying to build this using an ARM machine (a chromebook) but gcc-ada is not available for this architecture. Is it really needed?

ftschindler commented on 2014-07-01 07:27 (UTC)

In general: I can try, yes. At the moment: I am quite short on time, so it might take some time. Meanwhile, everyone is welcome to try...

MacNuke commented on 2014-06-30 22:09 (UTC)

Can you do a multilib version of that package?

ftschindler commented on 2014-06-02 19:28 (UTC)

Updated to 4.8.3-2: * fixed https://github.com/ftalbrecht/aur/issues/5, thanks to maleadt

maleadt commented on 2014-06-02 14:47 (UTC)

There is an issue with package(): the mv should redirect its pipes using &>/dev/null rather than 2&>, or ls returns 2 and the move of libgcc to a pkgver-dependent directory never happens (and conflicts happen at installation time). $ ls / 2&>/dev/null && echo test; echo $? 2 $ ls / &>/dev/null && echo test; echo $? test 0

ftschindler commented on 2014-05-31 12:30 (UTC)

Updated source and binary packages to to 4.8.3-1. The usual warnings apply (see below).

eleftg commented on 2014-05-30 16:20 (UTC)

GCC 4.8.3 was released on Thu, 22 May 2014 https://gcc.gnu.org/ml/gcc-announce/2014/msg00001.html

ftschindler commented on 2014-05-22 18:42 (UTC)

Updated to 4.8.2-4: * fixed https://github.com/ftalbrecht/aur/issues/1 * fixed https://github.com/ftalbrecht/aur/issues/2

hzy199411 commented on 2014-05-22 04:11 (UTC)

I think you should add following line(which from gcc46-multilib): # Doesn't like -fstack-protector-strong CFLAGS=${CFLAGS//-fstack-protector-strong/-fstack-protector} export CFLAGS CXXFLAGS=${CXXFLAGS//-fstack-protector-strong/-fstack-protector} export CXXFLAGS Then it can be built correctly