This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
osf-core.c vs. VMS?
- From: Jay K <jay dot krell at cornell dot edu>
- To: binutils <binutils at sourceware dot org>
- Date: Sat, 8 May 2010 06:58:48 +0000
- Subject: osf-core.c vs. VMS?
osf-core.c doesn't compile for me when targeting VMS.
?Because of the include sys/user.h and sys/core.h
Is it actually the correct file?
This patch just declares it is not.
I also don't think COREFILE needs to be set empty there, right after it already is.
Also perhaps it should be *-*-*vms*, but I'm not doing anything with IA64 (or VAX) currently. :)
Index: configure
===================================================================
RCS file: /cvs/src/src/bfd/configure,v
retrieving revision 1.331
diff -u -r1.331 configure
--- configure??? 27 Apr 2010 17:26:06 -0000??? 1.331
+++ configure??? 8 May 2010 06:50:01 -0000
@@ -13828,8 +13828,7 @@
?TRAD_HEADER=
?if test "${target}" = "${host}"; then
?? case "${host}" in
-? alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
-??? COREFILE=''
+? alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu | alpha*-*-*vms*)
???? ;;
?? alpha*-*-linux-*)
???? COREFILE=trad-core.lo
Index: configure.in
===================================================================
RCS file: /cvs/src/src/bfd/configure.in,v
retrieving revision 1.282
diff -u -r1.282 configure.in
--- configure.in??? 27 Apr 2010 17:26:09 -0000??? 1.282
+++ configure.in??? 8 May 2010 06:50:01 -0000
@@ -223,8 +223,7 @@
?TRAD_HEADER=
?if test "${target}" = "${host}"; then
?? case "${host}" in
-? alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
-??? COREFILE=''
+? alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu | alpha*-*-*vms*)
???? ;;
?? alpha*-*-linux-*)
???? COREFILE=trad-core.lo
Thanks,
?- Jay