Skip to content

Commit 96f1ef1

Browse files
committed
Fix buildcmd
1 parent 4f6238a commit 96f1ef1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platforms/ios/build_framework.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def getBuildCommand(self, archs, target):
166166
"-sdk", target.lower(),
167167
"-configuration", "Release",
168168
"-parallelizeTargets",
169-
"-jobs", multiprocessing.cpu_count(),
169+
"-jobs", str(multiprocessing.cpu_count()),
170170
] + (["-target","ALL_BUILD"] if self.dynamic else [])
171171

172172
return buildcmd

platforms/osx/build_framework.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def getBuildCommand(self, archs, target):
2323
"-sdk", target.lower(),
2424
"-configuration", "Release",
2525
"-parallelizeTargets",
26-
"-jobs", multiprocessing.cpu_count()
26+
"-jobs", str(multiprocessing.cpu_count())
2727
]
2828
return buildcmd
2929

0 commit comments

Comments
 (0)