File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
from 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
+
2
9
3
10
class Arch (object ):
4
11
@@ -103,7 +110,8 @@ class ArchARMv7_a(ArchARM):
103
110
def get_env (self ):
104
111
env = super (ArchARMv7_a , self ).get_env ()
105
112
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' ))
107
115
env ['CXXFLAGS' ] = env ['CFLAGS' ]
108
116
return env
109
117
Original file line number Diff line number Diff line change 27
27
from copy import deepcopy
28
28
from functools import wraps
29
29
from datetime import datetime
30
- from distutils .spawn import find_executable
31
30
from math import log10
32
31
33
32
import argparse
You can’t perform that action at this time.
0 commit comments