On 08/07/2018 04:28 PM, Robert Yang wrote:
commit 67f846b59b32f3d704c601669409c2584383fea9
Author: John Darrington <[email protected]>
Date:   Thu Apr 12 15:07:02 2018 +0100

     Stop the assembler from overwriting its output file.

[snip]
+             if (sib.st_ino == sob.st_ino)

I've figured out the root cause, the input and output files maybe on different
devices, so different files may have the same ino, we need check whether
sib.st_dev == sob.st_dev, too.

I will send a patch to fix it after more testing.

// Robert

+               {
+                 /* Don't let as_fatal remove the output file!  */
+                 out_file_name = NULL;
+                 as_fatal (_("The input and output files must be distinct"));
[snip]


I can't reproduce this problem locally, but it can be reproduced in our daily
build. Yocto doesn't have this problem atm since it use linux-yocto (not -dev).

Do you have any suggestions, please ?

// Robert

On 07/18/2018 04:10 AM, Khem Raj wrote:
Signed-off-by: Khem Raj <[email protected]>
---
  meta/conf/distro/include/tcmode-default.inc   |    2 +-
  .../{binutils-2.30.inc => binutils-2.31.inc}  |    2 +-
  ....30.bb => binutils-cross-canadian_2.31.bb} |    0
  ...s-cross_2.30.bb => binutils-cross_2.31.bb} |    0
  ...ssdk_2.30.bb => binutils-crosssdk_2.31.bb} |    0
  ...s-crosssdk-Generate-relocatable-SDKs.patch |   12 +-
  ...o-not-generate-linker-script-directo.patch |   22 +-
  ...iden-the-regexp-for-SH-architectures.patch |   12 +-
  ...004-Point-scripts-location-to-libdir.patch |   10 +-
  ...-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch |   10 +-
  .../binutils/0006-Use-libtool-2.4.patch       | 2296 +++++++++--------
  ...-the-armv5e-architecture-to-binutils.patch |    8 +-
  ...stro-compiler-point-to-the-wrong-ins.patch |    4 +-
  ...-system-directories-when-cross-linki.patch |   50 +-
  ...h-in-libtool-when-sysroot-is-enabled.patch |    4 +-
  ...e-default-emulation-for-mips64-linux.patch |   12 +-
  .../0012-Add-support-for-Netlogic-XLP.patch   |   80 +-
  ...ect-assembling-for-ppc-wait-mnemonic.patch |   10 +-
  .../0014-Detect-64-bit-MIPS-targets.patch     |    4 +-
  .../0015-sync-with-OE-libtool-changes.patch   |    4 +-
  .../{binutils_2.30.bb => binutils_2.31.bb}    |    0
  21 files changed, 1327 insertions(+), 1215 deletions(-)
  rename meta/recipes-devtools/binutils/{binutils-2.30.inc => binutils-2.31.inc} (97%)   rename meta/recipes-devtools/binutils/{binutils-cross-canadian_2.30.bb => binutils-cross-canadian_2.31.bb} (100%)   rename meta/recipes-devtools/binutils/{binutils-cross_2.30.bb => binutils-cross_2.31.bb} (100%)   rename meta/recipes-devtools/binutils/{binutils-crosssdk_2.30.bb => binutils-crosssdk_2.31.bb} (100%)   rename meta/recipes-devtools/binutils/{binutils_2.30.bb => binutils_2.31.bb} (100%)

--
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to