patches/binutils/2.17a/140-better_file_error.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 22:46:47 2011 +0200 (2011-07-17)
changeset 2892 aa934ec4b4ee
parent 747 d3e603e7c17c
permissions -rw-r--r--
cc/gcc: add the backend/frontend infra for final gcc

Currently, we issue the bare-metal compiler from the pass_1 & pass_2
core compilers, because the final gcc breaks while doing so.

This implies we have to build some libces during the start_files step,
instead of the standard libc step. This is the case for newlib.

By adding a backend/frontend infra to the final gcc, we can abstract
what backend to call: the standard backend for non-bare-metal gcc,
and the core backend for bare-metal.

This patch is just an no-op, it just adds the final backend and
frontend without changing the way bare-metal is built, to come in a
subsequent patch.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@55
     1
diff -dur binutils-2.17.old/bfd/opncls.c binutils-2.17/bfd/opncls.c
yann@55
     2
--- binutils-2.17.old/bfd/opncls.c	2006-03-16 13:20:16.000000000 +0100
yann@55
     3
+++ binutils-2.17/bfd/opncls.c	2007-05-01 18:26:11.000000000 +0200
yann@55
     4
@@ -158,6 +158,13 @@
yann@55
     5
 {
yann@55
     6
   bfd *nbfd;
yann@55
     7
   const bfd_target *target_vec;
yann@55
     8
+  struct stat s;
yann@55
     9
+
yann@55
    10
+  if (stat (filename, &s) == 0)
yann@55
    11
+    if (S_ISDIR(s.st_mode)) {
yann@55
    12
+      bfd_set_error (bfd_error_file_not_recognized);
yann@55
    13
+      return NULL;
yann@55
    14
+    }
yann@55
    15
 
yann@55
    16
   nbfd = _bfd_new_bfd ();
yann@55
    17
   if (nbfd == NULL)