{android,win32}/build.py: fix missing rename

This commit is contained in:
Max Kellermann 2015-11-20 22:14:10 +01:00
parent 2daa3eb61f
commit 7dad662d69
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ class AndroidNdkToolchain:
self.cflags = '-Os -g ' + common_flags
self.cxxflags = '-Os -g ' + common_flags
self.cppflags = '--sysroot=' + self.sysroot + ' -isystem ' + os.path.join(install_prefix, 'include')
self.ldflags = '--sysroot=' + self.sysroot + ' -L' + os.path.join(root_path, 'lib')
self.ldflags = '--sysroot=' + self.sysroot + ' -L' + os.path.join(install_prefix, 'lib')
self.libs = ''
libstdcxx_path = os.path.join(ndk_path, 'sources/cxx-stl/gnu-libstdc++', gcc_version)

View File

@ -46,7 +46,7 @@ class CrossGccToolchain:
self.cflags = '-O2 -g ' + common_flags
self.cxxflags = '-O2 -g ' + common_flags
self.cppflags = '-isystem ' + os.path.join(install_prefix, 'include')
self.ldflags = '-L' + os.path.join(root_path, 'lib')
self.ldflags = '-L' + os.path.join(install_prefix, 'lib')
self.libs = ''
self.env = dict(os.environ)