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):
924
924
env ['CFLAGS' ] += (
925
925
" -I{ctx.ndk_dir}/platforms/android-{ctx.android_api}/arch-{arch_noeabi}/usr/include" +
926
926
" -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 )
928
928
env ['CXXFLAGS' ] = env ['CFLAGS' ] + ' -frtti -fexceptions'
929
929
env ['LDFLAGS' ] += (
930
930
" -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 )
932
932
933
933
return env
934
934
You can’t perform that action at this time.
0 commit comments