File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1305,6 +1305,7 @@ def build_recipes(names, ctx):
1305
1305
recipe .build ()
1306
1306
1307
1307
# 4) biglink everything
1308
+ # AND: Should make this optional (could use
1308
1309
biglink (ctx )
1309
1310
1310
1311
# 5) postbuild packages
@@ -1318,7 +1319,15 @@ def build_recipes(names, ctx):
1318
1319
recipe .execute ()
1319
1320
1320
1321
def biglink (ctx ):
1321
- print ('skipping biglink...there is no libpymodules.so?' )
1322
+ # AND: Shouldn't hardcode ArchAndroid! In reality need separate
1323
+ # build dirs for each arch
1324
+ env = ArchAndroid (ctx ).get_env ()
1325
+
1326
+ print ('Biglinking' )
1327
+ bl = sh .Command (env ['BIGLINK' ])
1328
+ shprint (bl , join (ctx .libs_dir , 'libpymodules.so' ),
1329
+ env ['LIBLINK_PATH' ], _env = env )
1330
+
1322
1331
1323
1332
1324
1333
def ensure_dir (filename ):
You can’t perform that action at this time.
0 commit comments