File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,17 @@ def getDefaultFeatures(config, litConfig):
46
46
DEFAULT_FEATURES .append (Feature (name = 'edg' ))
47
47
DEFAULT_FEATURES .append (Feature (name = 'arch_ia32' ))
48
48
DEFAULT_FEATURES .append (Feature (name = 'arch_avx2' ))
49
+ DEFAULT_FEATURES .append (Feature (name = 'x86' ))
49
50
50
- if litConfig .target_arch .casefold () == 'x64' .casefold ():
51
+ elif litConfig .target_arch .casefold () == 'x64' .casefold ():
51
52
DEFAULT_FEATURES .append (Feature (name = 'arch_avx2' ))
53
+ DEFAULT_FEATURES .append (Feature (name = 'x64' ))
52
54
53
- if litConfig .target_arch .casefold () == 'arm' .casefold ():
55
+ elif litConfig .target_arch .casefold () == 'arm' .casefold ():
54
56
DEFAULT_FEATURES .append (Feature (name = 'arch_vfpv4' ))
57
+ DEFAULT_FEATURES .append (Feature (name = 'arm' ))
58
+
59
+ elif litConfig .target_arch .casefold () == 'arm64' .casefold ():
60
+ DEFAULT_FEATURES .append (Feature (name = 'arm64' ))
55
61
56
62
return DEFAULT_FEATURES
You can’t perform that action at this time.
0 commit comments