8000 Don't always build libxml2 · gruns/python-for-android@036c09a · GitHub
[go: up one dir, main page]

Skip to content

Commit 036c09a

Browse files
committed
Don't always build libxml2
1 parent 58636ba commit 036c09a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pythonforandroid/recipes/libxml2/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ class Libxml2Recipe(Recipe):
1010

1111
def should_build(self, arch):
1212
super(Libxml2Recipe, self).should_build(arch)
13-
return True
1413
return not exists(join(self.ctx.get_libs_dir(arch.arch), 'libxml2.a'))
1514

1615
def build_arch(self, arch):

pythonforandroid/recipes/lxml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_recipe_env(self, arch):
2828
#env['LDSHARED'] = ENV['CC']
2929
env['LDSHARED'] = join(self.ctx.root_dir, 'tools', 'liblink')
3030
# WTH is liblink?
31-
env['LDSHARED'] = env['LIBLINK']
31+
#env['LDSHARED'] = env['LIBLINK']
3232
# This linking almost works. Going to have to muck with LDSHARED to
3333
# include the libs_collection folder
3434
#zgoldberg@badass:~/.local/share/python-for-android/build/other_builds/lxml/armeabi/lxml (master)$ /usr/bin/ccache arm-linux-androideabi-ld -L/home/zgoldberg/.local/share/python-for-android/build/other_builds/libxml2/armeabi/libxml2//include -L/home/zgoldberg/.local/share/python-for-android/build/other_builds/libxslt/armeabi/libxslt -L/home/zgoldberg/android-sdks/ndk-bundle/platforms/android-16/arch-arm/usr/lib/ -L/home/zgoldberg/android-sdks/ndk-bundle/platforms/android-16/arch-arm/usr/lib/ -L/home/zgoldberg/.local/share/python-for-android/build/libs_collections/peggo-python/armeabi build/temp.linux-x86_64-2.7/src/lxml/lxml.objectify.o -lxslt -lxml2 -lpython2.7 -lz -lm -o build/lib.linux-x86_64-2.7/lxml/objectify.soi

0 commit comments

Comments
 (0)
0