comparison mx/mx_graal.py @ 21798:395ac43a8578

moved JVMCI sources from graal/ to jvmci/ directory
author Doug Simon <doug.simon@oracle.com>
date Tue, 09 Jun 2015 00:22:49 +0200
parents 1c22030625eb
children b1234c06ea49
comparison
equal deleted inserted replaced
21797:42452d2dfbec 21798:395ac43a8578
920 mustBuild = True 920 mustBuild = True
921 else: 921 else:
922 mustBuild = False 922 mustBuild = False
923 timestamp = os.path.getmtime(timestampFile) 923 timestamp = os.path.getmtime(timestampFile)
924 sources = [] 924 sources = []
925 for d in ['src', 'make', join('graal', 'com.oracle.jvmci.hotspot', 'src_gen', 'hotspot')]: 925 for d in ['src', 'make', join('jvmci', 'com.oracle.jvmci.hotspot', 'src_gen', 'hotspot')]:
926 for root, dirnames, files in os.walk(join(_graal_home, d)): 926 for root, dirnames, files in os.walk(join(_graal_home, d)):
927 # ignore <graal>/src/share/tools 927 # ignore <graal>/src/share/tools
928 if root == join(_graal_home, 'src', 'share'): 928 if root == join(_graal_home, 'src', 'share'):
929 dirnames.remove('tools') 929 dirnames.remove('tools')
930 sources += [join(root, name) for name in files] 930 sources += [join(root, name) for name in files]