aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1998-06-24 15:54:05 +0000
committerIan Lance Taylor <ian@airs.com>1998-06-24 15:54:05 +0000
commit499ecd2f43aeaf2c20b5443f90dc9353bdeb3eb7 (patch)
treeb522576d6ef2eef50a6b97d87bd0802cf53735be
parent5d626b5ecee5f8eef4c316986802c56c8af3674f (diff)
downloadgdb-499ecd2f43aeaf2c20b5443f90dc9353bdeb3eb7.zip
gdb-499ecd2f43aeaf2c20b5443f90dc9353bdeb3eb7.tar.gz
gdb-499ecd2f43aeaf2c20b5443f90dc9353bdeb3eb7.tar.bz2
Wed Jun 24 11:50:54 1998 Klaus Kaempf <kkaempf@progis.de>
* config/obj-vms.c (Create_VMS_Object_File): Force binary file.
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/obj-vms.c10
2 files changed, 10 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index ee16e57..9e1fa6a 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 24 11:50:54 1998 Klaus Kaempf <kkaempf@progis.de>
+
+ * config/obj-vms.c (Create_VMS_Object_File): Force binary file.
+
start-sanitize-am33
Wed Jun 24 09:38:10 1998 Jeffrey A Law (law@cygnus.com)
diff --git a/gas/config/obj-vms.c b/gas/config/obj-vms.c
index cc68564..bdfe3fd 100644
--- a/gas/config/obj-vms.c
+++ b/gas/config/obj-vms.c
@@ -1,5 +1,5 @@
/* vms.c -- Write out a VAX/VMS object file
- Copyright (C) 1987, 1988, 1992, 1994, 1995, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1987, 88, 92, 94, 95, 97, 1998 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -14,8 +14,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
-along with GAS; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+along with GAS; see the file COPYING. If not, write to the Free
+Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+02111-1307, USA. */
/* Written by David L. Kashtan */
/* Modified by Eric Youngdale to write VMS debug records for program
@@ -585,7 +586,8 @@ Create_VMS_Object_File ()
VMS_Object_File_FD = creat (out_file_name, 0777, "var");
#else /* eunice */
VMS_Object_File_FD = creat (out_file_name, 0, "rfm=var",
- "mbc=16", "deq=64", "fop=tef", "shr=nil");
+ "ctx=bin", "mbc=16", "deq=64", "fop=tef",
+ "shr=nil");
#endif /* eunice */
/* Deal with errors. */
if (VMS_Object_File_FD < 0)