pbootcms网站模板|日韩1区2区|织梦模板||网站源码|日韩1区2区|jquery建站特效-html5模板网

    <small id='PcBRW'></small><noframes id='PcBRW'>

      <bdo id='PcBRW'></bdo><ul id='PcBRW'></ul>
    <legend id='PcBRW'><style id='PcBRW'><dir id='PcBRW'><q id='PcBRW'></q></dir></style></legend>

      <i id='PcBRW'><tr id='PcBRW'><dt id='PcBRW'><q id='PcBRW'><span id='PcBRW'><b id='PcBRW'><form id='PcBRW'><ins id='PcBRW'></ins><ul id='PcBRW'></ul><sub id='PcBRW'></sub></form><legend id='PcBRW'></legend><bdo id='PcBRW'><pre id='PcBRW'><center id='PcBRW'></center></pre></bdo></b><th id='PcBRW'></th></span></q></dt></tr></i><div class="vdd7xhh" id='PcBRW'><tfoot id='PcBRW'></tfoot><dl id='PcBRW'><fieldset id='PcBRW'></fieldset></dl></div>
    1. <tfoot id='PcBRW'></tfoot>

      Visual Studio 調試器錯誤:無法啟動程序找不到指定

      Visual Studio debugger error: Unable to start program Specified file cannot be found(Visual Studio 調試器錯誤:無法啟動程序找不到指定的文件)
        <tbody id='LLRxH'></tbody>

      • <legend id='LLRxH'><style id='LLRxH'><dir id='LLRxH'><q id='LLRxH'></q></dir></style></legend>
          <bdo id='LLRxH'></bdo><ul id='LLRxH'></ul>
          <i id='LLRxH'><tr id='LLRxH'><dt id='LLRxH'><q id='LLRxH'><span id='LLRxH'><b id='LLRxH'><form id='LLRxH'><ins id='LLRxH'></ins><ul id='LLRxH'></ul><sub id='LLRxH'></sub></form><legend id='LLRxH'></legend><bdo id='LLRxH'><pre id='LLRxH'><center id='LLRxH'></center></pre></bdo></b><th id='LLRxH'></th></span></q></dt></tr></i><div class="rppvflb" id='LLRxH'><tfoot id='LLRxH'></tfoot><dl id='LLRxH'><fieldset id='LLRxH'></fieldset></dl></div>

          • <tfoot id='LLRxH'></tfoot>

              <small id='LLRxH'></small><noframes id='LLRxH'>

                本文介紹了Visual Studio 調試器錯誤:無法啟動程序找不到指定的文件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                限時送ChatGPT賬號..

                我在 C:full path hereVS2010lender.sln 中有一個解決方案

                此解決方案包含許多項目(大約 100 個).當我編譯它們時,它們都可以正常工作.我可以毫無問題地運行它們,并且(相當)一切正常(有一些錯誤).其中一個項目是 ALL_BUILD,但如果我嘗試調試 INSTALL(另一個項目),它會給出相同的錯誤.我正在使用 RELWithDebInfo 作為配置進行編譯,如果我手動執行該程序,它就可以工作.輸出在C:full path hereVS2010inRelWithDebInfo

                但是如果我嘗試運行編譯器,它會說

                <塊引用>

                "無法啟動程序C:這里的完整路徑VS2010RelWithDebInfoALL_BUILD找不到指定的文件"

                我嘗試將編譯后的程序復制到 VS 要求的路徑中,但它引發了同樣的錯誤.

                我該怎么做才能解決這個問題?現在我設置 cmake 來生成一個 mingw 項目,我編譯它并用 gdb 調試它,但這確實是一個緩慢且不切實際的工作流程,我想使用 VS 調試器.

                我必須說,如果我使用 Debug 作為配置進行編譯,程序甚至不會啟動.

                我在 Win7 64 位上使用 VS2010 Express

                (這是一個很大的開源程序,所以我不知道它到底做了什么)

                解決方案

                根據我掌握的信息推測,您實際上并不是在編譯程序,而是在嘗試運行它.也就是說,ALL_BUILD 設置為您的啟動項目.(它應該是粗體,與您的解決方案中的其他項目不同)如果您然后嘗試運行/調試,您將收到您描述的錯誤,因為根本沒有要運行的內容.

                該項目很可能通過 CMAKE 生成并包含在您的 Visual Studio 解決方案中.將任何生成 .exe 的項目設置為啟動項目(通過右鍵單擊該項目并選擇設置為啟動項目"),您很可能將能夠從 Visual Studio 中啟動這些項目.

                I have a solution in C:full path hereVS2010lender.sln

                This solution contains many projects(around 100). When I compile them, they all work fine. I can run them without any problem, and (quite) everything works (there are some bugs). One of the projects is ALL_BUILD, but it gives the same error if I try to debug INSTALL(another project). I'm compiling with RELWithDebInfo as configuration, and if I execute the program manually it works. It is outputted in C:full path hereVS2010inRelWithDebInfo

                But if I try to run the compiler, it says

                "Unable to start program C:full path hereVS2010RelWithDebInfoALL_BUILD Specified file cannot be found"

                I tried to copy the compiled program into the path required by VS, but it raised the same error.

                What should I do to solve this? Right now I set up cmake to generate also a mingw project and I compile it and debug it with gdb, but this is a really a slow and impractical workflow, and I would like to use the VS debugger.

                I must say that if I compile with Debug as configuration, the program doesn't even start.

                I'm using VS2010 Express on Win7 64bit

                (This is a big open source program, so I don't know exactly whatever it does)

                解決方案

                Guessing from the information I have, you're not actually compiling the program, but trying to run it. That is, ALL_BUILD is set as your startup project. (It should be in a bold font, unlike the other projects in your solution) If you then try to run/debug, you will get the error you describe, because there is simply nothing to run.

                The project is most likely generated via CMAKE and included in your Visual Studio solution. Set any of the projects that do generate a .exe as the startup project (by right-clicking on the project and selecting "set as startup project") and you will most likely will be able to start those from within Visual Studio.

                這篇關于Visual Studio 調試器錯誤:無法啟動程序找不到指定的文件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                Why do two functions have the same address?(為什么兩個函數的地址相同?)
                Why the initializer of std::function has to be CopyConstructible?(為什么 std::function 的初始化程序必須是可復制構造的?)
                mixing templates with polymorphism(混合模板與多態性)
                When should I use the keyword quot;typenamequot; when using templates(我什么時候應該使用關鍵字“typename?使用模板時)
                Dependent name resolution amp; namespace std / Standard Library(依賴名稱解析命名空間 std/標準庫)
                gcc can compile a variadic template while clang cannot(gcc 可以編譯可變參數模板,而 clang 不能)

                <small id='EjFSe'></small><noframes id='EjFSe'>

                  <tbody id='EjFSe'></tbody>
                  <bdo id='EjFSe'></bdo><ul id='EjFSe'></ul>

                  <tfoot id='EjFSe'></tfoot>
                • <i id='EjFSe'><tr id='EjFSe'><dt id='EjFSe'><q id='EjFSe'><span id='EjFSe'><b id='EjFSe'><form id='EjFSe'><ins id='EjFSe'></ins><ul id='EjFSe'></ul><sub id='EjFSe'></sub></form><legend id='EjFSe'></legend><bdo id='EjFSe'><pre id='EjFSe'><center id='EjFSe'></center></pre></bdo></b><th id='EjFSe'></th></span></q></dt></tr></i><div class="bl5btrp" id='EjFSe'><tfoot id='EjFSe'></tfoot><dl id='EjFSe'><fieldset id='EjFSe'></fieldset></dl></div>
                        <legend id='EjFSe'><style id='EjFSe'><dir id='EjFSe'><q id='EjFSe'></q></dir></style></legend>

                          主站蜘蛛池模板: 气动隔膜泵厂家-温州永嘉定远泵阀有限公司 | 螺杆式冷水机-低温冷水机厂家-冷冻机-风冷式-水冷式冷水机-上海祝松机械有限公司 | 恒湿机_除湿加湿一体机_恒湿净化消毒一体机厂家-杭州英腾电器有限公司 | 预制围墙_工程预制围墙_天津市瑞通建筑材料有限公司 | 钢板仓,大型钢板仓,钢板库,大型钢板库,粉煤灰钢板仓,螺旋钢板仓,螺旋卷板仓,骨料钢板仓 | 铸铝门厂家,别墅大门庭院大门,别墅铸铝门铜门[十大品牌厂家]军强门业 | 山东PE给水管厂家,山东双壁波纹管,山东钢带增强波纹管,山东PE穿线管,山东PE农田灌溉管,山东MPP电力保护套管-山东德诺塑业有限公司 | 地图标注-手机导航电子地图如何标注-房地产商场地图标记【DiTuBiaoZhu.net】 | 半自动预灌装机,卡式瓶灌装机,注射器灌装机,给药器灌装机,大输液灌装机,西林瓶灌装机-长沙一星制药机械有限公司 | 儿童语言障碍训练-武汉优佳加感统文化发展有限公司 | 垃圾清运公司_环卫保洁公司_市政道路保洁公司-华富环境 | 视觉检测设备_自动化检测设备_CCD视觉检测机_外观缺陷检测-瑞智光电 | 东莞画册设计_logo/vi设计_品牌包装设计 - 华略品牌设计公司 | 黑田精工电磁阀-CAMMOZI气缸-ROSS电磁-上海茂硕机械设备有限公司 | 【MBA备考网】-2024年工商管理硕士MBA院校/报考条件/培训/考试科目/提前面试/考试/学费-MBA备考网 | 光照全温振荡器(智能型)-恒隆仪器 | 压砖机_电动螺旋压力机_粉末成型压力机_郑州华隆机械tel_0371-60121717 | 冷轧机|两肋冷轧机|扁钢冷轧机|倒立式拉丝机|钢筋拔丝机|收线机-巩义市华瑞重工机械制造有限公司 | 培训中心-翰香原香酥板栗饼加盟店总部-正宗板栗酥饼技术 | 坏男孩影院-提供最新电影_动漫_综艺_电视剧_迅雷免费电影最新观看 | 100_150_200_250_300_350_400公斤压力空气压缩机-舰艇航天配套厂家 | 彩信群发_群发彩信软件_视频短信营销平台-达信通 | 无菌实验室规划装修设计-一体化实验室承包-北京洁净净化工程建设施工-北京航天科恩实验室装备工程技术有限公司 | 代做标书-代写标书-专业标书文件编辑-「深圳卓越创兴公司」 | 3d打印服务,3d打印汽车,三维扫描,硅胶复模,手板,快速模具,深圳市精速三维打印科技有限公司 | 硬齿面减速机[型号全],ZQ减速机-淄博久增机械 | 固诺家居-全屋定制十大品牌_整体衣柜木门橱柜招商加盟 | 网站建设-高端品牌网站设计制作一站式定制_杭州APP/微信小程序开发运营-鼎易科技 | OpenI 启智 新一代人工智能开源开放平台 | 自动化改造_智虎机器人_灌装机_贴标机-上海圣起包装机械 | 流程管理|流程管理软件|企业流程管理|微宏科技-AlphaFlow_流程管理系统软件服务商 | 深圳货架厂_仓库货架公司_重型仓储货架_线棒货架批发-深圳市诺普泰仓储设备有限公司 | 上海平衡机-单面卧式动平衡机-万向节动平衡机-圈带动平衡机厂家-上海申岢动平衡机制造有限公司 | 软文发布平台 - 云软媒网络软文直编发布营销推广平台 | 电子海图系统-电梯检验系统-智慧供热系统开发-商品房预售资金监管系统 | 中国产业发展研究网 - 提供行业研究报告 可行性研究报告 投资咨询 市场调研服务 | 上海办公室装修,办公楼装修设计,办公空间设计,企业展厅设计_写艺装饰公司 | 大米加工设备|大米加工机械|碾米成套设备|大米加工成套设备-河南成立粮油机械有限公司 | 智能化的检漏仪_气密性测试仪_流量测试仪_流阻阻力测试仪_呼吸管快速检漏仪_连接器防水测试仪_车载镜头测试仪_奥图自动化科技 | 网带通过式抛丸机,,网带式打砂机,吊钩式,抛丸机,中山抛丸机生产厂家,江门抛丸机,佛山吊钩式,东莞抛丸机,中山市泰达自动化设备有限公司 | 生物制药洁净车间-GMP车间净化工程-食品净化厂房-杭州波涛净化设备工程有限公司 |