Package Details: arm-linux-gnueabihf-gcc 14.2.1.git+ab884fffe3f-2

Git Clone URL: https://aur.archlinux.org/arm-linux-gnueabihf-gcc.git (read-only, click to copy)
Package Base: arm-linux-gnueabihf-gcc
Description: The GNU Compiler Collection
Upstream URL: https://gcc.gnu.org
Licenses: GPL, custom, LGPL, FDL
Conflicts: arm-linux-gnueabihf-gcc-stage1, arm-linux-gnueabihf-gcc-stage2
Provides: arm-linux-gnueabihf-gcc-stage1, arm-linux-gnueabihf-gcc-stage2
Replaces: arm-linux-gnueabihf-gcc-stage1, arm-linux-gnueabihf-gcc-stage2
Submitter: tavianator
Maintainer: wgottwalt
Last Packager: wgottwalt
Votes: 81
Popularity: 0.57
First Submitted: 2015-09-14 15:41 (UTC)
Last Updated: 2024-12-05 18:03 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

patrickelectric commented on 2018-02-06 15:00 (UTC)

Why this package does not come with arm-linux-gnueabihf-pkg-config ?

Glavnokoman commented on 2018-01-25 12:43 (UTC)

fixed by reinstalling arm-linux-gnueabihf-binutils

Glavnokoman commented on 2018-01-25 10:33 (UTC)

after update to 7.2.0-3 compilation of trivial main.c fails with '/usr/lib/gcc/arm-linux-gnueabihf/7.2.0/cc1: error while loading shared libraries: libmpfr.so.4: cannot open shared object file: No such file or directory'

tavianator commented on 2018-01-04 03:47 (UTC)

@sirplatypus: The correct order can be seen here: https://github.com/tavianator/arch-rpi-cross/blob/master/install.sh

sirplatypus commented on 2018-01-04 03:10 (UTC)

Due to the sheer number of errors I have run into trying to compile this package, I am now wondering what the correct way to go about this is. Just trying to compile this package of course does not work, and at this point I have gathered that each dependency must be individually installed in a specific order. What is that order? Thanks

jpartain commented on 2017-10-24 12:13 (UTC) (edited on 2017-10-24 15:00 (UTC) by jpartain)

I tried to install this package yesterday without luck. After adding the needed PGP keys, the arm-linux-gnueabihf-gcc-stage1 package fails to build with: /home/jim/.cache/pacaur/arm-linux-gnueabihf-gcc-stage1/src/gcc/gcc/statistics.h:25:2: error: #error GATHER_STATISTICS must be defined #error GATHER_STATISTICS must be defined ^~~~~ EDIT: It seems the issue was my appending to some environment variables, unsetting them cleared the issue.

Hi-Angel commented on 2017-06-29 08:24 (UTC) (edited on 2017-06-29 08:26 (UTC) by Hi-Angel)

Installed the package two days ago (another computer). For compiling this simple code: #include <string> std::string str; int main() { return 0; } I'm getting: λ arm-linux-gnueabihf-g++ test.cpp -o a /tmp/ccXKFetI.o: In function `__static_initialization_and_destruction_0(int, int)': test.cpp:(.text+0x50): undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string()' test.cpp:(.text+0x7c): undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string()' I've tried adding -lstdc++, defining a macro _GLIBCXX_USE_CXX11 to 1 and to 0, but it didn't work. "verbose" shows it's using correct lib paths "/usr/lib/gcc/arm-linux-gnueabihf/…" EDIT: sorry, the text is actually nicely formatted, but site is eating the whitespace.

tavianator commented on 2017-02-03 00:27 (UTC)

@Hi-Angel: You should install the entire base-devel group for building packages. From https://wiki.archlinux.org/index.php/PKGBUILD#makedepends: > Note: The group base-devel is assumed to be already installed when building with makepkg. Members of this group should not be included in makedepends array.

Hi-Angel commented on 2017-01-24 12:59 (UTC)

Please, add bison to dependencies.

xoac commented on 2016-11-16 14:48 (UTC)

@tavianator It is normal that there is no libstdc++.a? My linker yell: /usr/bin/arm-linux-gnueabihf-ld: cannot find -lstdc++ I need to compile my application static. If I compile without `-static` everything works fine!