You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just to clarify, the comment I made regarding verifying that shared library page size is correct for android (see #1740 (comment)) can be done without those tools.
The ELF format isn't that complicated and we could have a bit of logic that just reads it, not requiring users to have objdump etc installed
It would be nice if
package:native_toolchain_c
could rely onreadelf
,objdump
,nm
, etc. being available.We've got two options to do this:
hook/doctor.dart
and havepackage:native_toolchain_c
discover the tools directly.config.nativeConfig.cCompiler
.This would enable us to write
expectXXX
forpackage:native_toolchain_c
that users can use.==================================
It would be nice if
package:native_assets_builder
could rely onreadelf
,objdump
,nm
, etc. being available.We've got two options to do this:
config.nativeConfig.cCompiler
.This would enable us to write checks in the bundling tools that the dylibs are correct. #1740 (comment)
The text was updated successfully, but these errors were encountered: