public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/94432] New: Can't compile GNU-C - Compiler on armv7l - DEBIAN
@ 2020-04-01  8:45 krawutschke@uni-potsdam.de
  2020-04-01  8:50 ` [Bug c/94432] " jakub at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: krawutschke@uni-potsdam.de @ 2020-04-01  8:45 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94432

            Bug ID: 94432
           Summary: Can't compile GNU-C - Compiler on armv7l - DEBIAN
           Product: gcc
           Version: 9.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: krawutschke@uni-potsdam.de
  Target Milestone: ---

Hello together,

i want to compile GNU-C on my DEBIAN 10 - Node with an "armv7" - Processor.
I had the same problem with the C-Version 9.1.x til 9.3.x....

Every time the Compile break with an error - Message, that some "HEADER -
Files" are missing, but the "missing files" still there under
/usr/include/....".
So, what kind of problem is this?

My command for configure is:
./configure --prefix=/Zhexue-Cloud/project/packages/armv7l/gnu-c/9.1.0
--with-mpc=/Zhexue-Cloud/project/packages/armv7l/Libraries/MPC/1.1.0
--with-gmp=/Zhexue-Cloud/project/packages/armv7l/Libraries/GMP/6.2.0
--with-mpfr=/Zhexue-Cloud/project/packages/armv7l/Libraries/MPFR/4.0.2
--disable-multilib


On "gcc -v" I´ve got the following information:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/8/lto-wrapper
Target: arm-linux-gnueabihf
Configured with: ../src/configure -v --with-pkgversion='Debian 8.3.0-6'
--with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs
--enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr
--with-gcc-major-version-only --program-suffix=-8
--program-prefix=arm-linux-gnueabihf- --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm
--disable-libquadmath --disable-libquadmath-support --enable-plugin
--enable-default-pie --with-system-zlib --with-target-system-zlib
--enable-objc-gc=auto --enable-multiarch --disable-sjlj-exceptions
--with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb
--disable-werror --enable-checking=release --build=arm-linux-gnueabihf
--host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
gcc version 8.3.0 (Debian 8.3.0-6) 



The ERROR, that I´ve got is:

# If this is the top-level multilib, build all the other
# multilibs.
/home/Software/gcc-9.1.0/host-armv7l-unknown-linux-gnueabihf/gcc/xgcc
-B/home/Software/gcc-9.1.0/host-armv7l-unknown-linux-gnueabihf/gcc/
-B/Zhexue-Cloud/project/packages/armv7l/gnu-c/9.1.0/armv7l-unknown-linux-gnueabihf/bin/
-B/Zhexue-Cloud/project/packages/armv7l/gnu-c/9.1.0/armv7l-unknown-linux-gnueabihf/lib/
-isystem
/Zhexue-Cloud/project/packages/armv7l/gnu-c/9.1.0/armv7l-unknown-linux-gnueabihf/include
-isystem
/Zhexue-Cloud/project/packages/armv7l/gnu-c/9.1.0/armv7l-unknown-linux-gnueabihf/sys-include
  -fno-checking -g -O2 -O2  -g -O2 -DIN_GCC    -W -Wall -Wno-narrowing
-Wwrite-strings -Wcast-qual -Wno-format -Wstrict-prototypes
-Wmissing-prototypes -Wold-style-definition  -isystem ./include   -fPIC
-fno-inline -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector   -fPIC
-fno-inline -I. -I. -I../../host-armv7l-unknown-linux-gnueabihf/gcc
-I../.././libgcc -I../.././libgcc/. -I../.././libgcc/../gcc
-I../.././libgcc/../include  -DHAVE_CC_TLS  -o _muldi3.o -MT _muldi3.o -MD -MP
-MF _muldi3.dep -DL_muldi3 -c ../.././libgcc/libgcc2.c -fvisibility=hidden
-DHIDE_EXPORTS
In file included from ../.././libgcc/../gcc/tsystem.h:87,
                 from ../.././libgcc/libgcc2.c:27:
/usr/include/stdio.h:27:10: fatal error: bits/libc-header-start.h: Datei oder
Verzeichnis nicht gefunden
   27 | #include <bits/libc-header-start.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[3]: *** [Makefile:498: _muldi3.o] Fehler 1
make[3]: Verzeichnis
„/home/Software/gcc-9.1.0/armv7l-unknown-linux-gnueabihf/libgcc“ wird verlassen
make[2]: *** [Makefile:18744: all-stage1-target-libgcc] Fehler 2
make[2]: Verzeichnis „/home/Software/gcc-9.1.0“ wird verlassen
make[1]: *** [Makefile:24054: stage1-bubble] Fehler 2
make[1]: Verzeichnis „/home/Software/gcc-9.1.0“ wird verlassen
make: *** [Makefile:994: all] Fehler 2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c/94432] Can't compile GNU-C - Compiler on armv7l - DEBIAN
  2020-04-01  8:45 [Bug c/94432] New: Can't compile GNU-C - Compiler on armv7l - DEBIAN krawutschke@uni-potsdam.de
@ 2020-04-01  8:50 ` jakub at gcc dot gnu.org
  2020-04-01  9:46 ` krawutschke@uni-potsdam.de
  2020-04-01  9:46 ` jakub at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-04-01  8:50 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94432

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |jakub at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Dup

*** This bug has been marked as a duplicate of bug 94431 ***

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c/94432] Can't compile GNU-C - Compiler on armv7l - DEBIAN
  2020-04-01  8:45 [Bug c/94432] New: Can't compile GNU-C - Compiler on armv7l - DEBIAN krawutschke@uni-potsdam.de
  2020-04-01  8:50 ` [Bug c/94432] " jakub at gcc dot gnu.org
@ 2020-04-01  9:46 ` krawutschke@uni-potsdam.de
  2020-04-01  9:46 ` jakub at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: krawutschke@uni-potsdam.de @ 2020-04-01  9:46 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94432

--- Comment #2 from Matthias Krawutschke <krawutschke@uni-potsdam.de> ---
Thank you, Jakob.

But how can I fix that? 
Because I can't find an Error or Mistake on my Installation.

Best regards and take care

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c/94432] Can't compile GNU-C - Compiler on armv7l - DEBIAN
  2020-04-01  8:45 [Bug c/94432] New: Can't compile GNU-C - Compiler on armv7l - DEBIAN krawutschke@uni-potsdam.de
  2020-04-01  8:50 ` [Bug c/94432] " jakub at gcc dot gnu.org
  2020-04-01  9:46 ` krawutschke@uni-potsdam.de
@ 2020-04-01  9:46 ` jakub at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-04-01  9:46 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94432

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
File it into debian bug tracking system?

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-04-01  9:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-01  8:45 [Bug c/94432] New: Can't compile GNU-C - Compiler on armv7l - DEBIAN krawutschke@uni-potsdam.de
2020-04-01  8:50 ` [Bug c/94432] " jakub at gcc dot gnu.org
2020-04-01  9:46 ` krawutschke@uni-potsdam.de
2020-04-01  9:46 ` jakub at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).