~khyew/mixxx/fixes-1.9

« back to all changes in this revision

Viewing changes to mixxx/build/mixxx.py

  • Committer: Sean M. Pappalardo
  • Date: 2011-03-04 09:02:15 UTC
  • Revision ID: pegasus@renegadetech.com-20110304090215-h1cgg9h74t2lrij9
Alessio Treglia's patch to recognize all architectures Debian builds on

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
1
2
import logging
2
3
import platform
3
4
import sys
39
40
            raise Exception("invalid target platform")
40
41
 
41
42
        if machine not in ['x86_64', 'x86', 'i686', 'i586',
 
43
                           'alpha', 'hppa', 'mips', 'mipsel', 's390',
 
44
                           'sparc', 'ia64', 'armel', 'hurd-i386',
 
45
                           'kfreebsd-amd64', 'kfreebsd-i386',
42
46
                           'i486', 'i386', 'powerpc', 'powerpc64',
43
 
                           'AMD64', 'EM64T', 'INTEL64']:
 
47
                           'amd64', 'AMD64', 'EM64T', 'INTEL64']:
44
48
            raise Exception("invalid machine type")
45
49
 
46
50
        if toolchain not in ['gnu', 'msvs']: