comparison make/linux/build.sh @ 3958:075ea0ed9e7c

7081842: assert(Compile::current()->unique() < (uint)MaxNodeLimit) failed: Node limit exceeded Summary: Add missing node limit check in IGVN optimizer Reviewed-by: iveresov, never
author kvn
date Tue, 20 Sep 2011 08:39:40 -0700
parents c18cbe5936b8
children
comparison
equal deleted inserted replaced
3957:5cceda753a4a 3958:075ea0ed9e7c
1 #! /bin/sh 1 #! /bin/sh
2 # 2 #
3 # Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. 3 # Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 # 5 #
6 # This code is free software; you can redistribute it and/or modify it 6 # This code is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License version 2 only, as 7 # under the terms of the GNU General Public License version 2 only, as
8 # published by the Free Software Foundation. 8 # published by the Free Software Foundation.
42 esac 42 esac
43 43
44 case `uname -m` in 44 case `uname -m` in
45 i386|i486|i586|i686) 45 i386|i486|i586|i686)
46 mach=i386 46 mach=i386
47 ;;
48 x86_64)
49 mach=amd64
47 ;; 50 ;;
48 *) 51 *)
49 echo "Unsupported machine: " `uname -m` 52 echo "Unsupported machine: " `uname -m`
50 exit 1 53 exit 1
51 ;; 54 ;;