Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Simplify build scripts for Mono on POSIX. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a76782cfe63c9a08dbfe2177c82c4e95 |
User & Date: | mistachkin 2018-07-26 05:05:25 |
Context
2018-07-26
| ||
06:52 | By default, only attempt to initialize the logging subsystem once and add 'Initialize_SQLiteLog' setting to disable this behavior. check-in: 21c1c04012 user: mistachkin tags: trunk | |
05:05 | Simplify build scripts for Mono on POSIX. check-in: a76782cfe6 user: mistachkin tags: trunk | |
04:30 | On POSIX, copy the compiled SQLite interop assembly to the Windows DLL name as well. check-in: 31ab90057a user: mistachkin tags: trunk | |
Changes
Changes to Setup/build-mono-debug.sh.
3 4 5 6 7 8 9 10 11 |
scriptdir=`dirname "$BASH_SOURCE"`
if [[ -z "$SQLITE_NET_YEAR" ]]; then
SQLITE_NET_YEAR=2013
fi
pushd "$scriptdir/.."
xbuild SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Debug /property:ConfigurationSuffix=$SQLITE_NET_CONFIGURATION_SUFFIX /property:InteropCodec=false /property:InteropLog=false /property:CheckState=true /property:CountHandle=true /property:TraceConnection=true /property:TraceDetection=true /property:TraceHandle=true /property:TraceStatement=true /property:TrackMemoryBytes=true "$@"
popd
|
| |
3 4 5 6 7 8 9 10 11 |
scriptdir=`dirname "$BASH_SOURCE"` if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=2013 fi pushd "$scriptdir/.." xbuild SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Debug "$@" popd |
Changes to Setup/build-mono-release.sh.
3 4 5 6 7 8 9 10 11 |
scriptdir=`dirname "$BASH_SOURCE"`
if [[ -z "$SQLITE_NET_YEAR" ]]; then
SQLITE_NET_YEAR=2013
fi
pushd "$scriptdir/.."
xbuild SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Release /property:ConfigurationSuffix=$SQLITE_NET_CONFIGURATION_SUFFIX /property:InteropCodec=false /property:InteropLog=false "$@"
popd
|
| |
3 4 5 6 7 8 9 10 11 |
scriptdir=`dirname "$BASH_SOURCE"` if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=2013 fi pushd "$scriptdir/.." xbuild SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Release "$@" popd |