This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


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

PATCH: Recognize s390/s390x as valid $basic_machine.


binutils doesn't know s390/s390x:

# ./config.sub s390-linux
Invalid configuration `s390-linux': machine `s390' not recognized
# ./config.sub s390x-linux
Invalid configuration `s390x-linux': machine `s390x' not recognized

Here is a patch. I can build the cross assembler to s390-linux now.


H.J.
----
2001-03-09  H.J. Lu <hjl@gnu.org>

	* config.sub: Recognize s390/s390x as valid $basic_machine.

Index: config.sub
===================================================================
RCS file: /work/cvs/gnu/binutils/config.sub,v
retrieving revision 1.17
diff -u -p -r1.17 config.sub
--- config.sub	2001/02/10 23:40:35	1.17
+++ config.sub	2001/03/09 22:07:41
@@ -234,7 +234,7 @@ case $basic_machine in
 		| mips16 | mips64 | mipsel | mips64el \
 		| mips64orion | mips64orionel | mipstx39 | mipstx39el \
 		| mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \
-		| mips64vr5000 | miprs64vr5000el | mcore \
+		| mips64vr5000 | miprs64vr5000el | mcore | s390 | s390x \
 		| sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \
 		| thumb | d10v | d30v | fr30 | avr | openrisc)
 		basic_machine=$basic_machine-unknown


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