python/build/ffmpeg.py: remove obsolete -no-integrated-as workaround

This commit is contained in:
Max Kellermann
2021-01-19 20:11:41 +01:00
parent 68f4be323c
commit 3825175bfc
2 changed files with 3 additions and 8 deletions
android
python/build

@ -103,7 +103,7 @@ class AndroidNdkToolchain:
llvm_bin = os.path.join(llvm_path, 'bin')
self.cc = os.path.join(llvm_bin, 'clang')
self.cxx = os.path.join(llvm_bin, 'clang++')
common_flags += ' -target ' + llvm_triple + ' -integrated-as -gcc-toolchain ' + toolchain_path
common_flags += ' -target ' + llvm_triple + ' -gcc-toolchain ' + toolchain_path
common_flags += ' -fvisibility=hidden -fdata-sections -ffunction-sections'