~mixxxdevelopers/mixxx/features_autodj

« back to all changes in this revision

Viewing changes to mixxx/build/mixxx.py

  • Committer: RJ Ryan
  • Date: 2010-10-07 06:48:19 UTC
  • Revision ID: rryan@mit.edu-20101007064819-trdk2jzu51yjoqh6
Change all uses of bitwidth to use string interpolation and change them back to integer. replace qdebug and optimize features where they are with a workaround for the msvcdebug dependence.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
                    self.machine = 'x86_64'
80
80
        self.machine_is_64bit = self.machine in ['x86_64', 'powerpc64']
81
81
 
82
 
        self.bitwidth = "32"
 
82
        self.bitwidth = 32
83
83
        if self.machine_is_64bit:
84
 
            self.bitwidth = "64"
 
84
            self.bitwidth = 64
85
85
 
86
86
        self.build_dir = util.get_build_dir(self.platform, self.bitwidth)
87
87