~ubuntu-branches/ubuntu/trusty/libv8-3.14/trusty

« back to all changes in this revision

Viewing changes to tools/utils.py

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2014-02-12 10:26:54 UTC
  • Revision ID: package-import@ubuntu.com-20140212102654-mh2oalg31ifhjs0g
Tags: 3.14.5.8-5ubuntu1
* 0099_powerpc_support.patch: Pull in Andrew Low's powerpc port.
* debian/rules: Enable powerpc/ppc64/ppc64el for package builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
    return 'solaris'
64
64
  elif id == 'NetBSD':
65
65
    return 'netbsd'
 
66
  elif id == 'AIX':
 
67
    return 'aix'
66
68
  else:
67
69
    return None
68
70
 
83
85
    return 'ia32'
84
86
  elif id == 'amd64':
85
87
    return 'ia32'
 
88
  elif id == 'ppc64':
 
89
    return 'ppc'
86
90
  else:
87
91
    return None
88
92