File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -924,11 +924,11 @@ def get_recipe_env(self, arch):
924924 env ['CFLAGS' ] += (
925925 " -I{ctx.ndk_dir}/platforms/android-{ctx.android_api}/arch-{arch_noeabi}/usr/include" +
926926 " -I{ctx.ndk_dir}/sources/cxx-stl/gnu-libstdc++/{ctx.toolchain_version}/include" +
927- " -I{ctx.ndk_dir}/sources/cxx-stl/gnu-libstdc++/{ctx.toolchain_version}/libs/{arch.arch}/include" .format (** keys ) )
927+ " -I{ctx.ndk_dir}/sources/cxx-stl/gnu-libstdc++/{ctx.toolchain_version}/libs/{arch.arch}/include" ) .format (** keys )
928928 env ['CXXFLAGS' ] = env ['CFLAGS' ] + ' -frtti -fexceptions'
929929 env ['LDFLAGS' ] += (
930930 " -L{ctx.ndk_dir}/sources/cxx-stl/gnu-libstdc++/{ctx.toolchain_version}/libs/{arch.arch}" +
931- " -lgnustl_shared" .format (** keys ) )
931+ " -lgnustl_shared" ) .format (** keys )
932932
933933 return env
934934
You can’t perform that action at this time.
0 commit comments