久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <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="qwawimqqmiuu" 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="qwawimqqmiuu" 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="qwawimqqmiuu" 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>

                          主站蜘蛛池模板: av在线播放网址 | 亚洲成av人片在线观看无码 | 久久久久一区二区 | 日韩不卡在线 | 久久久国产精品视频 | 国产馆| 一区二区三区四区免费视频 | 国产视频1区 | 日屁网站| 99精品在线 | 国产探花在线精品一区二区 | 天天久久 | 国产一区二区三区免费观看在线 | 久久精品91久久久久久再现 | 成人欧美一区二区三区黑人孕妇 | 国产精品久久久久久亚洲调教 | 久久久久久久一区 | 又爽又黄axxx片免费观看 | 97国产精品| 在线免费观看黄网 | 青青久久av北条麻妃海外网 | 草草精品 | 久久久久久久久久久久91 | 99久久99久久精品国产片果冰 | 色综合久久伊人 | 欧美成人精品一区二区男人看 | 亚洲大片| 国产91久久精品一区二区 | 91av免费观看 | 成人精品在线观看 | 亚洲综合无码一区二区 | 亚洲va国产日韩欧美精品色婷婷 | 日韩影院在线观看 | 在线免费观看毛片 | 黄片毛片在线观看 | 91精品国产综合久久久动漫日韩 | 亚洲欧美激情四射 | 97视频在线观看网站 | 精品日韩 | 人人干天天干 | 日韩中文在线视频 |