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

    • <bdo id='uYfKL'></bdo><ul id='uYfKL'></ul>
  • <tfoot id='uYfKL'></tfoot>

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

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

        <legend id='uYfKL'><style id='uYfKL'><dir id='uYfKL'><q id='uYfKL'></q></dir></style></legend>

        使用 cl.exe 進行命令行編譯?

        Command line compile using cl.exe?(使用 cl.exe 進行命令行編譯?)
          <bdo id='zynz7'></bdo><ul id='zynz7'></ul>
            <legend id='zynz7'><style id='zynz7'><dir id='zynz7'><q id='zynz7'></q></dir></style></legend>
            <i id='zynz7'><tr id='zynz7'><dt id='zynz7'><q id='zynz7'><span id='zynz7'><b id='zynz7'><form id='zynz7'><ins id='zynz7'></ins><ul id='zynz7'></ul><sub id='zynz7'></sub></form><legend id='zynz7'></legend><bdo id='zynz7'><pre id='zynz7'><center id='zynz7'></center></pre></bdo></b><th id='zynz7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='zynz7'><tfoot id='zynz7'></tfoot><dl id='zynz7'><fieldset id='zynz7'></fieldset></dl></div>

                    <tbody id='zynz7'></tbody>
                • <tfoot id='zynz7'></tfoot>

                • <small id='zynz7'></small><noframes id='zynz7'>

                  本文介紹了使用 cl.exe 進行命令行編譯?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我試圖在不使用 IDE 的情況下使用 Visual Studio Express 2010 C++ 編譯器.我在 C:Program Files (x86)Microsoft Visual Studio 10.0VCin 中找到了 cl.exe.但是我有一些困難.首先,當我輸入 cl 說程序無法啟動,因為您的計算機中缺少 mspdb100.dll"時,它給了我一個警告彈出窗口.

                  Am trying to use the Visual Studio Express 2010 C++ compiler without using the IDE. I found cl.exe in C:Program Files (x86)Microsoft Visual Studio 10.0VCin. However am having a few difficulties. Firstly it gave me a warning pop up when i type cl saying 'Program cannot start because mspdb100.dll is missing from your computer.'

                  所以我將 C:Program Files (x86)Microsoft Visual Studio 10.0Common7IDE 添加到系統(tǒng)路徑,然后再試一次,但這次:

                  So i add C:Program Files (x86)Microsoft Visual Studio 10.0Common7IDE to the system path and then try again, but this time:

                  致命錯誤 C1510:無法加載語言資源 clui.dll.

                  fatal error C1510: Cannot load language resource clui.dll.

                  知道如何解決這個問題以便我可以編譯嗎?另外,我將如何設(shè)置路徑,以便我可以從不包含 cl.exe 的解決方案文件夾中鍵入cl main.cpp"等.目前我必須在 bin 文件夾內(nèi).謝謝.

                  Any idea how to solve this so i can compile? Also how would i set up the path so i can just type 'cl main.cpp' etc, from within a solution folder that does not contain cl.exe. At the moment i have to be inside bin folder. Thanks.

                  推薦答案

                  嘗試從

                  Start->
                      All Programs ->
                          Microsoft Visual Studio 2010 ->
                              Visual Studio Tools ->
                                  Visual Studio Command Prompt 2010
                  

                  或者,您可以通過在命令提示符下運行來設(shè)置環(huán)境:

                  Alternatively, you can set up the environment by running this in a command prompt:

                  "c:Program Files (x86)Microsoft Visual Studio 10.0VCvcvarsall.bat" x86
                  

                  (注意:這將在運行后保留您的環(huán)境設(shè)置.)

                  (note: this will leave your environment set up after running.)

                  (注意2:根據(jù)需要更改x86.選項為x86、ia64、amd64x86_amd64, x86_ia64)

                  (note2: change x86 as desired. options are x86, ia64, amd64, x86_amd64, x86_ia64)

                  從那里您可以運行 cl.exe.如果您希望在運行 cl 時自動完成和撤消此操作,請創(chuàng)建一個包含以下內(nèi)容的批處理文件:

                  From there you can run cl.exe. If you want this to be automatically done and undone whenever you run cl, create a batch file with this content:

                  @echo off
                  %comspec% /c ""c:Program Files (x86)Microsoft Visual Studio 10.0VCvcvarsall.bat" x86 && cl.exe %*"
                  

                  (/c 告訴命令提示符在運行此命令后結(jié)束會話,以便您的環(huán)境恢復正常.)

                  (the /c tells the command prompt to end the session after running this command, so your environment returns to normal.)

                  從那里,將其命名為 cl.bat.將其放在某個文件夾中,并將該文件夾的路徑添加到您的 PATH 環(huán)境變量中,確保它位于 cl.exe 的路徑之前code>,以便在您鍵入 cl 而不是 cl.exe

                  From there, name it cl.bat. Put this in a folder somewhere, and add the path to that folder to your PATH environment variable, making sure it comes before the path to cl.exe, so that this cl.bat is executed whenever you type cl instead of cl.exe

                  我建議你把 cl.bat 放在你的 system32/ 文件夾中,它應該放在 cl.exe 的路徑之前默認安裝.

                  I recommend you just put cl.bat in your system32/ folder, it should come before cl.exe's path on a default installation.

                  或者,您可以按任何順序添加它并始終鍵入 cl.bat,或?qū)⑵涿麨槠渌Q,以免混淆.

                  Alternatively, you can add it in any order and always type cl.bat, or name it something else so there's no confusion.

                  這篇關(guān)于使用 cl.exe 進行命令行編譯?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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 的初始化程序必須是可復制構(gòu)造的?)
                  mixing templates with polymorphism(混合模板與多態(tài)性)
                  When should I use the keyword quot;typenamequot; when using templates(我什么時候應該使用關(guān)鍵字“typename?使用模板時)
                  Dependent name resolution amp; namespace std / Standard Library(依賴名稱解析命名空間 std/標準庫)
                  gcc can compile a variadic template while clang cannot(gcc 可以編譯可變參數(shù)模板,而 clang 不能)
                      <tbody id='Q6s6Q'></tbody>

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

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

                        <legend id='Q6s6Q'><style id='Q6s6Q'><dir id='Q6s6Q'><q id='Q6s6Q'></q></dir></style></legend>
                        • <tfoot id='Q6s6Q'></tfoot>
                          1. 主站蜘蛛池模板: 最近中文字幕第一页 | 91精品在线播放 | 男人的天堂一级片 | 婷婷在线免费 | 一区二区三区久久久 | av网站免费在线观看 | 亚洲一级毛片 | 久久国产精品一区二区三区 | 一区二区三区成人 | 中文字幕av中文字幕 | 中文字幕久久精品 | 亚洲欧美在线观看 | 欧美乱码精品一区二区三区 | 手机av免费在线 | 性视频网 | 成人免费观看男女羞羞视频 | 先锋资源在线 | 国产精品一区久久久 | 国产色 | 99久久国产综合精品麻豆 | 福利久久| 成人精品一区二区 | 久久久免费少妇高潮毛片 | 黄色网页在线 | 亚洲综合视频 | 成人国产在线视频 | 欧美精品国产精品 | 99热在线观看精品 | 久久激情av | 国产精品日韩一区 | 99视频免费看 | 日韩最新网址 | www亚洲精品 | 精品一区二区三区在线观看 | 亚洲成人在线免费 | 久久国产一区二区三区 | 欧美区在线 | 免费成人高清在线视频 | 成人污污视频 | 中文字幕一区二区三区在线视频 | 青娱乐一区二区 |