久久久久久久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 調(diào)試器錯誤:無法啟動程序找不到指定

      Visual Studio debugger error: Unable to start program Specified file cannot be found(Visual Studio 調(diào)試器錯誤:無法啟動程序找不到指定的文件)
        <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 調(diào)試器錯誤:無法啟動程序找不到指定的文件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                問題描述

                限時送ChatGPT賬號..

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

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

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

                <塊引用>

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

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

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

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

                我在 Win7 64 位上使用 VS2010 Express

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

                解決方案

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

                該項目很可能通過 CMAKE 生成并包含在您的 Visual Studio 解決方案中.將任何生成 .exe 的項目設(shè)置為啟動項目(通過右鍵單擊該項目并選擇設(shè)置為啟動項目"),您很可能將能夠從 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.

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

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

                相關(guān)文檔推薦

                Why do two functions have the same address?(為什么兩個函數(shù)的地址相同?)
                Why the initializer of std::function has to be CopyConstructible?(為什么 std::function 的初始化程序必須是可復(fù)制構(gòu)造的?)
                mixing templates with polymorphism(混合模板與多態(tài)性)
                When should I use the keyword quot;typenamequot; when using templates(我什么時候應(yīng)該使用關(guān)鍵字“typename?使用模板時)
                Dependent name resolution amp; namespace std / Standard Library(依賴名稱解析命名空間 std/標準庫)
                gcc can compile a variadic template while clang cannot(gcc 可以編譯可變參數(shù)模板,而 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一区二区三区亚洲 | 91理论片午午伦夜理片久久 | 日韩理论在线观看 | 中文字幕一区二区在线播放 | 超碰在线91| 久久超 | 五月天激情影院 | www.伊人网| 一级大毛片 | 日韩视频精品 | 一级欧美一级日韩 | 久在线 | 国产吃瓜黑料一区二区 | 天天干夜夜骑 | 97色综合| 日本a在线 | 久久国产小视频 | 日本三级一区 | 91久久奴性调教 | 日韩精品久久久久久久 | 四虎www| 日韩在线播放视频 | 欧美一区二区三区视频 | 伊人久久亚洲 | 亚洲久久在线 | 91久久精品日日躁夜夜躁欧美 | 国产精品成人一区二区网站软件 | 日韩免费在线视频 | 欧美色综合天天久久综合精品 | 日韩中文字幕在线观看 | 黄色影音 | 精品一区二区三区免费看 | 日本欧美视频 | 91综合在线 | 国产成人小视频 | 欧美日韩综合在线 | 日韩网站在线观看 | 91免费在线看 |