首页 > 其他分享 >.in'ig.status: error: cannot find input file: `

.in'ig.status: error: cannot find input file: `

时间:2023-12-28 17:22:38浏览次数:33  
标签:status configure -- bootstrap faac unix cannot file

交叉编译 libaac 库,源码下载地址 https://sourceforge.net/projects/faac/
解压

unzip faac-1.28.zip 
cd faac-1.28.zip

执行./bootstrap 时出现如下错误

# ./bootstrap 
-bash: ./bootstrap: /bin/sh^M: bad interpreter: No such file or directory

原因是 bootstrap 的文件格式是 DOS,使用如下方法改成 unix 的
使用 vim 打开 bootstrap,进入命令行模式(shift+;),用 set ff 查看文件格式,使用set ff=unix 改成 unix 格式,保存。

再次执行 ./bootstrap

在 .configure 的时候遇到如下错误

./configure
.....
.....
.....
checking for fpos_t.__pos... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
.in'ig.status: error: cannot find input file: `

原因也是文件格式的问题,改成 unix 格式

完整编译命令

./bootstrap 
./configure --target=arm-linux --host=arm-linux-gnueabihf  --enable-static --disable-shared --without-mp4v2 --prefix=/home/faac-1.28/install
make 
make install

标签:status,configure,--,bootstrap,faac,unix,cannot,file
From: https://www.cnblogs.com/shawn-meng/p/17933162.html

相关文章

  • 二十,JAVA File
    相对路径:IO流默认目录:当前项目工程开始自己算绝对路径:带盘符的路径:网络路径:https://img2.baidu.com/it/u=3164322677&fm=253&fmt=auto&app=120File:文件(带后缀的)和目录(文件夹)//静态字段:System.out.println("File.pathSeparator="+File.p......
  • keycloak~从login-status-iframe页面总结如何跨域传值~续
    keycloak~从login-status-iframe相关文章,可阅读我的这两篇keycloak~从login-status-iframe页面总结如何跨域传值,keycloak~对接login-status-iframe页面判断用户状态变更。什么是跨域跨域(Cross-Origin)是指在Web开发中,当一个资源(比如JavaScript、CSS、图片等)来自于不同域名、协......
  • 手把手从安装本地虚拟机,基于docker,部署springboot+vue项目(若依框架前后端分离版本演示
    目录1.安装本地虚拟机centos2.安装docker,拉取镜像,创建容器3.打包部署后端4.配置nginx5.打包部署前端6.常见问题汇总1.安装本地虚拟机centos部署环境提供vm16,和centos7,其中把镜像改成.iso文件就可以了阿里云链接:https://www.alipan.com/s/BTnpjuHWtEp为什么用阿里云,不限速啊,秉......
  • uniapp实战 -- 个人信息维护(含选择图片 uni.chooseMedia,上传文件 uni.uploadFile,获取
    效果预览相关代码页面–我的src\pages\my\my.vue<!--个人资料--><viewclass="profile":style="{paddingTop:safeAreaInsets!.top+'px'}"><!--情况1:已登录--><viewclass="overview"v-if="mem......
  • #星计划# DevEco Studio Profiler工具分析应用启动性能
    LaunchProfiler概述DevEcoStudio内置Profiler分析调优工具,其中Launch主要用于分析应用或服务的启动耗时,分析启动周期各阶段的耗时情况、核心线程的运行情况等,协助开发者识别启动缓慢的原因。此外,Launch任务窗口还集成了Time、CPU、Frame场景分析任务的功能,方便开发者在分析启动......
  • Nextjs SyntaxError: Cannot use import statement outside a module错误
    NextJs报 SyntaxError:Cannotuseimportstatementoutsideamodule第三方依赖不能导入问题 解决方案:1,Next.JS13.1+,可以使用next.config.js中的属性transpilePackagesconstnextConfig={transpilePackages:['the-npm-package'],//第三方的依赖};module.expo......
  • Oracle 11g RAC(openfiler +multipath +udev +补丁升级)
    配套视频:《Oracle11gRAC安装》 或《Oracle11gRAC安装》配套文档:《一步一步在linux上部署Oracle11gR2RAC》......
  • 完美解决SqlServer2012启动报错(cannot find one or more components.Please reinstall
    原因:默认安装在C:\ProgramFiles(x86)\MicrosoftVisualStudio10.0文件夹,以支持sqlserver2012.(我之前不小心把这个文件夹删除了)。解决方案:下载了visualstudio2010Isolatedshell完美解决问题,下载后安装就能正常运行SqlServer2012了,其他SqlServer版本请下载visualstudio......
  • 37. 干货系列从零用Rust编写负载均衡及代理,负载均衡中try_files实现
    wmproxywmproxy已用Rust实现http/https代理,socks5代理,反向代理,静态文件服务器,四层TCP/UDP转发,七层负载均衡,内网穿透,后续将实现websocket代理等,会将实现过程分享出来,感兴趣的可以一起造个轮子项目地址国内:https://gitee.com/tickbh/wmproxygithub:https://github.com/......
  • 漏洞复现:easy file sharing server漏洞与Metasploit应用
    一、漏洞渗透测试1、靶机(Windows)安装easyfilesharingserver,该服务存在漏洞。2、利用Nmap扫描发现靶机(Windows)运行了该服务。3、利用该漏洞,使得靶机运行计算器。一、打开easyfilesharingserver 二、kali上nmap扫描端口 发现80和443端口提供该服务扫描漏洞 ......