Use __asm__ rather than asm in gold testsuite
[deliverable/binutils-gdb.git] / sim / common / create-version.sh
index 84a6577bf5306fbdf65b0c806f5d6c326b8c4d63..5ed962339ebd41fed451573ae49431112d1da32b 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# Copyright (C) 1989-2015 Free Software Foundation, Inc.
+# Copyright (C) 1989-2020 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# Create version.c from $1/../gdb/version.in.
-# Please keep the same API as $1/../gdb/common/create-version.sh so
-# they can be called the same way, from e.g. $srcroot/src-release.
+# Create version.c from version.in.
 # Usage:
-#    create-version.sh PATH-TO-SIM-SRCDIR HOST_ALIAS \
+#    create-version.sh PATH-TO-GDB-SRCDIR HOST_ALIAS \
 #        TARGET_ALIAS OUTPUT-FILE-NAME
 
 srcdir="$1"
@@ -31,8 +29,10 @@ 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/../gdb/version.in > version.tmp
+sed -e "s/DATE/$date/" < $srcdir/version.in > version.tmp
 echo '#include "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
 mv version.c-tmp $output
 rm -f version.tmp
This page took 0.022967 seconds and 4 git commands to generate.