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

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

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

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

      1. 為 Windows Phone 8 構(gòu)建 SQLite

        Build SQLite for windows phone 8(為 Windows Phone 8 構(gòu)建 SQLite)
        <tfoot id='ajFzD'></tfoot>

            <tbody id='ajFzD'></tbody>

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

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

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

                1. 本文介紹了為 Windows Phone 8 構(gòu)建 SQLite的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  限時(shí)送ChatGPT賬號(hào)..

                  SQLite 可用作

                  <塊引用>

                  一個(gè)完整的 VSIX 包,帶有一個(gè)擴(kuò)展 SDK 和所有其他使用 SQLite 進(jìn)行應(yīng)用程序開發(fā)所需的組件面向 Windows Phone 8.0 的 Visual Studio 2012.

                  但是我需要對(duì)源代碼做一些修改.Tim Heuer 在他的 博客 描述了如何為 WinRT 構(gòu)建 sqlite.

                  我猜的主要部分:

                  <塊引用>

                  構(gòu)建DLL:nmake -f makefile.msc sqlite3.dll FOR_WINRT=1如果為 ARM 構(gòu)建:nmake -f makefile.msc sqlite3.dll FOR_WINRT=1 OPTS=/DWINAPI_FAMILY=WINAPI_PARTITION_APP

                  應(yīng)該指定哪些選項(xiàng)來(lái)為 Windows Phone 8 構(gòu)建?

                  更新:

                  我試過(guò)了

                  nmake -f makefile.msc sqlite3.dll FOR_WINRT=1 OPTS=-DWINAPI_FAMILY=WINAPI_PARTITION_PHONE

                  結(jié)果:

                  我也試過(guò)了

                   nmake -f makefile.msc sqlite3.dll FOR_WINRT=1 OPTS=-DWINAPI_FAMILY=WINAPI_FAMILY_PHONE_APP

                  結(jié)果:

                  解決方案

                  Sqlite 包括一些要在構(gòu)建過(guò)程中構(gòu)建和運(yùn)行的工具,即在您構(gòu)建的平臺(tái)上:mkkeywordhash.exelemon.exe.這些工具應(yīng)該由 cl.exe 針對(duì)您的構(gòu)建平臺(tái)構(gòu)建,而不是您的目標(biāo)平臺(tái).

                  NCC 變量用于指定本地編譯器的位置:

                  nmake -f makefile.msc sqlite3.dll <你的選項(xiàng)>NCC="c:\Program Files\..path-to-native\cl.exe"

                  可能就夠了.如果出現(xiàn)其他問(wèn)題,請(qǐng)?jiān)?Makefile.msc 中找到 NCC 并查看它以獲取更多信息.例如.您可能需要設(shè)置以下參數(shù):

                  XCOMPILE=1USE_NATIVE_LIBPATHS=1NCRTLIBPATH(你的本地 CRT 庫(kù)在哪里?)NSDKLIBPATH(你的原生 SDK 庫(kù)在哪里?)

                  SQLite is available as

                  A complete VSIX package with an extension SDK and all other components needed to use SQLite for application development with Visual Studio 2012 targeting Windows Phone 8.0.

                  But I need to do some modification in source code. Tim Heuer in his blog described how to build sqlite for WinRT.

                  The main part I guess:

                  Build the DLL:  
                      nmake -f makefile.msc sqlite3.dll FOR_WINRT=1  
                      If building for ARM: 
                          nmake -f makefile.msc sqlite3.dll FOR_WINRT=1 OPTS=/DWINAPI_FAMILY=WINAPI_PARTITION_APP
                  

                  What options should be specified to build for Windows Phone 8?

                  Update:

                  I've tried

                  nmake -f makefile.msc sqlite3.dll FOR_WINRT=1 OPTS=-DWINAPI_FAMILY=WINAPI_PARTITION_PHONE
                  

                  Result:

                  Also I've tried

                      nmake -f makefile.msc sqlite3.dll FOR_WINRT=1 OPTS=-DWINAPI_FAMILY=WINAPI_FAMILY_PHONE_APP
                  

                  Result:

                  解決方案

                  Sqlite includes some tools to be built and run during the build process, i.e. on the platform you're building on: mkkeywordhash.exe and lemon.exe. These tools should be built by cl.exe targetting your build platform, not your target platform.

                  NCC variable is used to specify the location of native compiler:

                  nmake -f makefile.msc sqlite3.dll <your options> NCC="c:\Program Files\..path-to-native\cl.exe"
                  

                  It might be enough. If another problem arises, find NCC in Makefile.msc and look around it for more information. E.g. you might have to set the following parameters:

                  XCOMPILE=1
                  USE_NATIVE_LIBPATHS=1
                  NCRTLIBPATH (where are your native CRT libraries?)
                  NSDKLIBPATH (where are your native SDK libraries?)
                  

                  這篇關(guān)于為 Windows Phone 8 構(gòu)建 SQLite的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關(guān)文檔推薦

                  Can I figure out a list of databases and the space used by SQL Server instances without writing SQL queries?(我可以在不編寫 SQL 查詢的情況下找出數(shù)據(jù)庫(kù)列表和 SQL Server 實(shí)例使用的空間嗎?) - IT屋-程序員軟件開發(fā)
                  How to create a login to a SQL Server instance?(如何創(chuàng)建對(duì) SQL Server 實(shí)例的登錄?)
                  How to know the version and edition of SQL Server through registry search(如何通過(guò)注冊(cè)表搜索知道SQL Server的版本和版本)
                  WinForms application design - moving documents from SQL Server to file storage(WinForms 應(yīng)用程序設(shè)計(jì)——將文檔從 SQL Server 移動(dòng)到文件存儲(chǔ))
                  Is there a way to get information about a server using SQL(有沒(méi)有辦法使用 SQL 獲取有關(guān)服務(wù)器的信息)
                  Update Record in Sqlite Window Phone 8(Sqlite Window Phone 8 中的更新記錄)

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

                            <tbody id='q22ou'></tbody>

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

                            <bdo id='q22ou'></bdo><ul id='q22ou'></ul>
                            <legend id='q22ou'><style id='q22ou'><dir id='q22ou'><q id='q22ou'></q></dir></style></legend><tfoot id='q22ou'></tfoot>
                          • 主站蜘蛛池模板: 亚洲欧美中文日韩在线v日本 | 欧美中文一区 | 男人天堂社区 | 亚洲精品国产一区 | 国产成人久久精品 | 欧美一级二级在线观看 | 日韩精品一区二区三区视频播放 | 久久小视频 | av免费在线观看网站 | 亚洲精品久久久久中文字幕欢迎你 | 国产精品久久久久久52avav | 久久久精品一区二区三区 | 国产精品久久欧美久久一区 | 国产在线第一页 | 欧美精品一区二区三区视频 | 亚洲成人午夜电影 | xxxxx免费视频 | 久久小视频| 国产精品视频综合 | 久久久人成影片一区二区三区 | 日本三级网站在线观看 | 日本一区二区三区免费观看 | 欧美伊人影院 | 日韩一级免费 | 激情伊人网 | 91国产在线视频在线 | 国产福利91精品 | 网色| 97中文视频| 91精品国产一区二区三区动漫 | 岛国一区| 色综合久| 不卡一区二区三区四区 | 欧美日韩亚洲国产 | 一级片免费视频 | 最新日韩在线视频 | 国产一级精品毛片 | 99re视频在线| 青青草社区 | 国产精品久久久久久久久久久久久久 | 亚洲综合五月天婷婷 |