「android」gomobile argument unused during compilation: '-stdlib=libc++'
须知少年凌云志,曾许人间第一流。这篇文章主要讲述「android」gomobile argument unused during compilation: '
-stdlib=libc++'
相关的知识,希望能为你提供帮助。
【问题】
android基于go的NDK开发中配置gomobile参考官方WIKI:https://github.com/golang/go/wiki/Mobile,大致步骤:
1、下载gomobile:$ go get golang.org/x/mobile/cmd/gomobile
2、初始化 $ gomobile init
但是使用gomobile编译官方例子($ gomobile build -target=android golang.org/x/mobile/example/basic)
时提示错误:argument unused during compilation: ‘-stdlib=libc++‘
版本:go 1.11,mac os10.13.1
【解决】
网上居然没搜到该问题,难道就我遇到了这个问题? 开始以为是clang,gcc引起的,更新了go版本,无效。
从字面上理解这个错误,是编译时带了-stdlib=libc++,但是却没有用到该参数???
libc++是针对clang编译器特别重写的C++标准库,libstdc++是gcc的,单独编译用gcc和clang编译cpp文件,无论是否带-stdlib=libc++,均正常。
在官方的github上不小心搜到了一样的问题,我去!花了这么多时间。
修改android的ndk中的build/tools/make_standalone_toolchain.py,去掉-stdlib=libc++,两个地方:
1、flags = ‘-target {} -stdlib=libc++‘.format(target)改为flags = ‘-target {}‘.format(target),
【「android」gomobile argument unused during compilation: '
-stdlib=libc++'
】2、cxx_flags = flags + ‘ -stdlib=libc++‘改为cxx_flags = flags
修改之后重新 $ gomobile init
推荐阅读
- Error:Program type already present: android.arch.lifecycle.LiveData
- mui---调用图像裁剪android
- Android 开发 上拉加载更多功能实现
- c# 枚举安卓系统中所有目录及文件名
- CreateFileMappingMapViewOfFile UnmapViewOfFile函数用法及示例
- 在Android浏览器中通过WebView调用相机拍照/选择文件 上传到服务器
- win7/10下Qt Creator调试提示(The selected debugger may be inappropriate for the inferior的解决办法)
- Android MVP 架构一 View与Presenter
- android中使用toolbar