我使用的U-Boot版本是u-boot-2012.10,编译的步骤为 cd u-boot-2012.10 make s5p_goni_config sudo make 然后,就会看到错误提示 /bin/bash: arm-linux-gcc: command not found dirname: missing operand Try 'dirname --help' for more information. 在arm-linux-gcc确认安装无误的前提下(可以参照 https://www.…
Flash调用Alchemy编译的代码时出现Error #1506的解决这个问题困扰了我很久,因为需要频繁的向Alchemy代码中传递大ByteArray数组.当某次传递的数据量较大时,后面再调用时就会抛出下面这个异常:Error #1506: The specified range is invalid.比较确定是Adobe在Alchemy实现中的BUG,但是一直没有找到解决办法.碰巧在google上找到某老外回的帖子,似乎原因在于反复创建CInitLib对象,并且多次调用init方法.如果将…
在Ubuntu14.04 64位系统中已经安装了libc6:i386的库,编译Uboot时提示error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory. 出错原因是:缺少lib32z1库 解决方法:sudo apt-get install lib32z1…