Skip to content

Commit 36c750b

Browse files
committed
Reinstated the zip exporter
1 parent 3e2526a commit 36c750b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tools/export/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
from tools.export import uvision4, uvision5, codered, gccarm, ds5_5, iar
2323
from tools.export import emblocks, coide, kds, simplicityv3, atmelstudio
24-
from tools.export import sw4stm32, e2studio
24+
from tools.export import sw4stm32, e2studio, zip
2525
from tools.export.exporters import OldLibrariesException, FailedBuildException
2626
from tools.targets import TARGET_NAMES, EXPORT_MAP, TARGET_MAP
2727

tools/export/zip.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ class ZIP(Exporter):
3333
's_sources':'2'
3434
}
3535

36+
TOOLCHAIN = 'ARM'
37+
3638
def get_toolchain(self):
3739
return 'uARM' if (self.target in self.USING_MICROLIB) else 'ARM'
3840

3941
def generate(self):
4042
return True
41-
43+

0 commit comments

Comments
 (0)