File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11from os .path import (join )
2+ from os import environ , uname
3+ import sys
4+ from distutils .spawn import find_executable
5+ from recipebases import Recipe
6+
7+ from pythonforandroid .logger import warning
8+
29
310class Arch (object ):
411
@@ -103,7 +110,8 @@ class ArchARMv7_a(ArchARM):
103110 def get_env (self ):
104111 env = super (ArchARMv7_a , self ).get_env ()
105112 env ['CFLAGS' ] = (env ['CFLAGS' ] +
106- ' -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb' )
113+ (' -march=armv7-a -mfloat-abi=softfp '
114+ '-mfpu=vfp -mthumb' ))
107115 env ['CXXFLAGS' ] = env ['CFLAGS' ]
108116 return env
109117
Original file line number Diff line number Diff line change 2727from copy import deepcopy
2828from functools import wraps
2929from datetime import datetime
30- from distutils .spawn import find_executable
3130from math import log10
3231
3332import argparse
You can’t perform that action at this time.
0 commit comments