我有.cargo/config.toml以下内容:
[unstable]\nunstable-options = true\nbuild-std = ["core", "alloc"]\nRun Code Online (Sandbox Code Playgroud)\n但我build-std只需要一个目标(例如thumbv7em-none-eabihf)。
有没有办法专门为目标声明它?
\n它可能是这样的:
\n# wrong example, doesn\'t work apparently\n[target.thumbv7em-none-eabihf.unstable]\nbuild-std = ["core", "alloc"]\nRun Code Online (Sandbox Code Playgroud)\n注意,我\xe2\x80\x99m 仅讨论配置,我知道如何使用货物执行参数配置它。\xe2\x80\x99s 需要自动忽略build-std其他提到的目标,例如默认主机目标。
我有一个在Haxe上编写自己的协议,数据结构和逻辑的跨平台实现.如何在iOS和OSX的企业应用程序(使用本机UI)中构建和使用它?