Changes between Version 6 and Version 7 of AdminDepLibs


Ignore:
Timestamp:
Jul 30, 2018, 12:43:10 PM (6 years ago)
Author:
Kevin Reed
Comment:

Updated Sqlite build instructions provided by Al Seippel

Legend:

Unmodified
Added
Removed
Modified
  • AdminDepLibs

    v6 v7  
    6767}}}
    6868
    69 4) Open Visual Studio x64 Win64 Command Prompt (note this is different than the normal visual studio command prompt): 
     694) Open Visual Studio x64 Win64 Command Prompt (note this is different than the normal visual studio command prompt):
    7070
    71715) Build 64-bit Release and debug.  Instructions in INSTALL.W64 are not complete/detailed:
     
    107107(will be deprecated once we switch to concierge-based auto attach)
    108108
    109 Project URL: [https://www.sqlite.org/]
    110 
    111 Use the project file included in the Sqlite project file diff page.
    112 
    113 Project file diffs: [wiki:AdminDepLibsSqlite Sqlite]
    114 
     109Project URL: !https://www.sqlite.org [[BR]]Follow these build instructions:[[BR]]1) Download the amalgamated source code files: !https://www.sqlite.org/index.html [[BR]]2) Open Visual Studio command prompt and cd to uncompressed amalagamted source directory:[[BR]][[BR]]
     110{{{
     111   $ cl sqlite3.c -DSQLITE_DEBUG -O2 -link -dll -out:sqlite3_Win32_Debug.dll
     112   $ cl sqlite3.c -O2 -link -dll -out:sqlite3_Win32_Release.dll
     113   $ "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe" /lib /def:sqlite3.def /MACHINE:X86
     114}}}
     115[[BR]]3) Open Visual Studio x64 Win64 Command Prompt (note this is different than the normal visual studio command prompt):[[BR]][[BR]]
     116{{{
     117   $ cl sqlite3.c -DSQLITE_DEBUG -O2 -link -dll -out:sqlite3_x64_Debug.dll
     118   $ cl sqlite3.c -O2 -link -dll -out:sqlite3_x64_Release.dll
     119   $ "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe" /lib /def:sqlite3.def /MACHINE:X64
     120}}}
     121[[BR]]4) Copy resulting files to the appropriate boinc_dependencies directories
    115122=== !WxWidgets ===
    116123URL: http://www.wxwidgets.org/