博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android-ndk-r8e wordlist 第二个参数不是数值参数
阅读量:4357 次
发布时间:2019-06-07

本文共 619 字,大约阅读时间需要 2 分钟。

近期在google官网上下载了最新的NDK-R8,发现在执行ndk-build时候,发现以下错误:
NDK/build/gmsl/__gmsl:512: non-numeric second argument to ‘wordlist’ function
如果中文系统的话,就是以下提示:
NDK/build/gmsl/__gmsl:512: *** “wordlist”函数的第二个参数不是数值参数: ”。 停止。

找到__gmsl文件,用记事本打开,搜索“int_encode = $(__gmsl_tr1)$(wordlist 1, $1,$(__gmsl_input_int))”

I changed the file  __gmsl, the second wordlist argument(line 512), 
and it's running my jni example without errors: 

int_encode = $(__gmsl_tr1)$(wordlist 1, $1,$(__gmsl_input_int)) 

to: 

int_encode = $(__gmsl_tr1)$(wordlist 1,$(words $1),$ 
(__gmsl_input_int)) 

转载于:https://www.cnblogs.com/coolbear/archive/2013/04/25/3042242.html

你可能感兴趣的文章
[JavaScript]Promise
查看>>
类型转换(2)
查看>>
BZOJ 1016--[JSOI2008]最小生成树计数(kruskal&搜索)
查看>>
326. Power of Three
查看>>
Debugging Custom SharePoint Timer Jobs
查看>>
实验四 恶意代码技术
查看>>
让 Winform 窗口悬浮的简单方式
查看>>
TcxGrid
查看>>
Python——day02
查看>>
微软的官方技术文档
查看>>
ubuntu
查看>>
一款JavaScript开发的扫雷小游戏
查看>>
动态轮播图
查看>>
win7和centos7双系统--转
查看>>
mysql5.1安装图解
查看>>
Android 连接windows电脑抓取日志信息
查看>>
超强、超详细Redis数据库入门教程
查看>>
工具类编写规范
查看>>
SQL中根据汉字的拼音首字母模糊查询
查看>>
salt未持久化保存导致应用启动时候的网络请求失败(没有权限)
查看>>