This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 1/3] Update create-version.sh to use common/version.h


On 2019-01-23 12:29, Tom Tromey wrote:
This changes create-version.sh to have the generated file use
common/version.h as the file name.

2019-01-23  Tom Tromey  <tom@tromey.com>

	* common/create-version.sh: Use common/version.h.
---
 gdb/ChangeLog                | 4 ++++
 gdb/common/create-version.sh | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/common/create-version.sh b/gdb/common/create-version.sh
index 51cffe8db5..6e67a61357 100755
--- a/gdb/common/create-version.sh
+++ b/gdb/common/create-version.sh
@@ -30,7 +30,7 @@ output="$4"
 rm -f version.c-tmp $output version.tmp
date=`sed -n -e 's/^.* BFD_VERSION_DATE \(.*\)$/\1/p' $srcdir/../bfd/version.h`
 sed -e "s/DATE/$date/" < $srcdir/version.in > version.tmp
-echo '#include "version.h"' >> version.c-tmp
+echo '#include "common/version.h"' >> version.c-tmp
echo 'const char version[] = "'"`sed q version.tmp`"'";' >> version.c-tmp
 echo 'const char host_name[] = "'"$host_alias"'";' >> version.c-tmp
echo 'const char target_name[] = "'"$target_alias"'";' >> version.c-tmp

Hi Tom,

Somebody reported this compilation error when building the simulator with an aarch64 target (sorry about the formatting, I'm on web client):

ccache /opt/gcc/8.2/bin/gcc -DHAVE_CONFIG_H -DWITH_DEFAULT_ALIGNMENT=NONSTRICT_ALIGNMENT -DDEFAULT_INLINE=0 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -I. -I../../../binutils-gdb/sim/aarch64 -I../common -I../../../binutils-gdb/sim/aarch64/../common -I../../include -I../../../binutils-gdb/sim/aarch64/../../include -I../../bfd -I../../../binutils-gdb/sim/aarch64/../../bfd -I../../opcodes -I../../../binutils-gdb/sim/aarch64/../../opcodes -g3 -O0 -fsanitize=address -c -o version.o -MT version.o -MMD -MP -MF .deps/version.Tpo version.c
version.c:1:10: fatal error: common/version.h: No such file or directory
 #include "common/version.h"
          ^~~~~~~~~~~~~~~~~~


You can probably reproduce it with --enable-sim --target=aarch64-linux-gnu.

Simon


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]