首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    linux中运行zipalignaapt提示:No such file or directory解决办法

    最近在用Docker+Jenkins做持续集成(CI),中间有个步骤需要调用zipalign对齐jar包,但我运行zipalign的时候却提示: No such file or directory。...后来我搜索“Linux no such file or directory原因” 找到: Linux执行可执行文件提示No such file or directory的解决方法 原来是库不匹配的原因...再搜索“Linux zipalign no such file or directory” 找到: sudo apt-get install libc6:i386 libstdc++6:i386 zlib1g...: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory...所以zipalign:No such file or directory的原因是找不到匹配的32位库。 提示这个错误可能是二进制文件错误处理信息不够完善。

    2.3K20

    深入理解linux执行文件提示No such file or directory的背后原因

    2 过程 在英伟达的开发板中 gcc a.c生成a.out,然后拷贝到ZC706中执行出现“No such file or directory” 以前遇到的是以下原因: 文件本身不存在或者文件损坏 无执行权限...建立软链接 ln -s /lib/ld-linux.so.3 /lib/ld-linux-armhf.so.3 3. 编译程序时,加入-static选项静态链接程序,即不使用动态库 ?...3 介绍 ld装载器 Linux 使用这个ld-linux.so*(虚拟机x86的ubuntu 是使用ld-linux.so2)中的来装载(其实这只是一个链接)其他库。...所以这个库必须放在 linux中/lib下。对于其他,通常我们共享库放在/lib这个路径下,而且也是系统默认的搜索路径。...ldconfig: Warning: ignoring configuration file that cannot be opened: /etc/ld.so.conf: No such file or directory

    7.6K41
    领券