コード例 #1
0
ファイル: linux_arm.py プロジェクト: tcbquick/platformio
 def __init__(self):
     if "linux_arm" in util.get_systype():
         del self.PACKAGES['toolchain-gccarmlinuxgnueabi']
     BasePlatform.__init__(self)
コード例 #2
0
ファイル: linux_i686.py プロジェクト: Cgruppo/platformio
 def __init__(self):
     if get_systype() == "linux_i686":
         del self.PACKAGES['toolchain-gcclinux32']
     BasePlatform.__init__(self)
コード例 #3
0
ファイル: linux_x86_64.py プロジェクト: Cgruppo/platformio
 def __init__(self):
     if get_systype() == "linux_x86_64":
         del self.PACKAGES['toolchain-gcclinux64']
     BasePlatform.__init__(self)
コード例 #4
0
ファイル: linux_arm.py プロジェクト: Cgruppo/platformio
 def __init__(self):
     if "linux_arm" in util.get_systype():
         del self.PACKAGES['toolchain-gccarmlinuxgnueabi']
     BasePlatform.__init__(self)
コード例 #5
0
 def __init__(self):
     if get_systype() == "linux_x86_64":
         del self.PACKAGES['toolchain-gcclinux64']
     BasePlatform.__init__(self)
コード例 #6
0
 def __init__(self):
     if get_systype() == "linux_i686":
         del self.PACKAGES['toolchain-gcclinux32']
     BasePlatform.__init__(self)