8000 sqlcipher/mkdll.sh at ditto · codesourse/sqlcipher · GitHub
[go: up one dir, main page]

Skip to content
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":"art","path":"art","contentType":"directory"},{"name":"autoconf","path":"autoconf","contentType":"directory"},{"name":"contrib","path":"contrib","contentType":"directory"},{"name":"ditto","path":"ditto","contentType":"submodule","submoduleUrl":null,"submoduleDisplayName":"ditto @ 2a12079"},{"name":"doc","path":"doc","contentType":"directory"},{"name":"ext","path":"ext","contentType":"directory"},{"name":"mptest","path":"mptest","contentType":"directory"},{"name":"sqlcipher.xcodeproj","path":"sqlcipher.xcodeproj","contentType":"directory"},{"name":"src","path":"src","contentType":"directory"},{"name":"test","path":"test","contentType":"directory"},{"name":"tool","path":"tool","contentType":"directory"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".gitmodules","path":".gitmodules","contentType":"file"},{"name":"LICENSE","path":"LICENSE","contentType":"file"},{"name":"Makefile.arm-wince-mingw32ce-gcc","path":"Makefile.arm-wince-mingw32ce-gcc","contentType":"file"},{"name":"Makefile.in","path":"Makefile.in","contentType":"file"},{"name":"Makefile.linux-gcc","path":"Makefile.linux-gcc","contentType":"file"},{"name":"Makefile.msc","path":"Makefile.msc","contentType":"file"},{"name":"Makefile.vxworks","path":"Makefile.vxworks","contentType":"file"},{"name":"README","path":"README","contentType":"file"},{"name":"VERSION","path":"VERSION","contentType":"file"},{"name":"aclocal.m4","path":"aclocal.m4","contentType":"file"},{"name":"addopcodes.awk","path":"addopcodes.awk","contentType":"file"},{"name":"config.guess","path":"config.guess","contentType":"file"},{"name":"config.h.in","path":"config.h.in","contentType":"file"},{"name":"config.sub","path":"config.sub","contentType":"file"},{"name":"configure","path":"configure","contentType":"file"},{"name":"configure.ac","path":"configure.ac","contentType":"file"},{"name":"install-sh","path":"install-sh","contentType":"file"},{"name":"ltmain.sh","path":"ltmain.sh","contentType":"file"},{"name":"magic.txt","path":"magic.txt","contentType":"file"},{"name":"main.mk","path":"main.mk","contentType":"file"},{"name":"manifest","path":"manifest","contentType":"file"},{"name":"manifest.uuid","path":"manifest.uuid","contentType":"file"},{"name":"mkdll.sh","path":"mkdll.sh","contentType":"file"},{"name":"mkextu.sh","path":"mkextu.sh","contentType":"file"},{"name":"mkextw.sh","path":"mkextw.sh","contentType":"file"},{"name":"mkopcodec.awk","path":"mkopcodec.awk","contentType":"file"},{"name":"mkopcodeh.awk","path":"mkopcodeh.awk","contentType":"file"},{"name":"mkso.sh","path":"mkso.sh","contentType":"file"},{"name":"spec.template","path":"spec.template","contentType":"file"},{"name":"sqlcipher-1.1.8-testkey.db","path":"sqlcipher-1.1.8-testkey.db","contentType":"file"},{"name":"sqlcipher-2.0-be-testkey.db","path":"sqlcipher-2.0-be-testkey.db","contentType":"file"},{"name":"sqlcipher-2.0-beta-testkey.db","path":"sqlcipher-2.0-beta-testkey.db","contentType":"file"},{"name":"sqlcipher-2.0-le-testkey.db","path":"sqlcipher-2.0-le-testkey.db","contentType":"file"},{"name":"sqlcipher-3.0-testkey.db","path":"sqlcipher-3.0-testkey.db","contentType":"file"},{"name":"sqlcipher.1","path":"sqlcipher.1","contentType":"file"},{"name":"sqlcipher.pc.in","path":"sqlcipher.pc.in","contentType":"file"},{"name":"sqlite.pc.in","path":"sqlite.pc.in","contentType":"file"}],"totalCount":49}},"fileTreeProcessingTime":5.194323,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":17157944,"defaultBranch":"master","name":"sqlcipher","ownerLogin":"codesourse","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2014-02-25T02:00:54.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/6462119?v=4","public":true,"private":false,"isOrgOwned":false},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"ditto","listCacheKey":"v0:1614802222.039008","canEdit":false,"refType":"branch","currentOid":"5bc5cf4b41762a2b21e7eabefa8884fc3ba89d90"},"path":"mkdll.sh","currentUser":null,"blob":{"rawLines":["#!/bin/sh","#","# This script is used to compile SQLite into a DLL.","#","# Two separate DLLs are generated. \"sqlite3.dll\" is the core","# library. \"tclsqlite3.dll\" contains the TCL bindings and is the","# library that is loaded into TCL in order to run SQLite.","#","make sqlite3.c","PATH=$PATH:/opt/mingw/bin","TCLDIR=/home/drh/tcltk/846/win/846win","TCLSTUBLIB=$TCLDIR/libtcl84stub.a","OPTS='-DUSE_TCL_STUBS=1 -DBUILD_sqlite=1 -DSQLITE_OS_WIN=1'","OPTS=\"$OPTS -DSQLITE_THREADSAFE=1\"","OPTS=\"$OPTS -DSQLITE_ENABLE_FTS3=1\"","OPTS=\"$OPTS -DSQLITE_ENABLE_RTREE=1\"","OPTS=\"$OPTS -DSQLITE_ENABLE_COLUMN_METADATA=1\"","CC=\"i386-mingw32msvc-gcc -Os $OPTS -Itsrc -I$TCLDIR\"","NM=\"i386-mingw32msvc-nm\"","CMD=\"$CC -c sqlite3.c\"","echo $CMD","$CMD","CMD=\"$CC -c tclsqlite3.c\"","echo $CMD","$CMD","echo 'EXPORTS' \u003etclsqlite3.def","$NM tclsqlite3.o | grep ' T ' \u003etemp1","grep '_Init$' temp1 \u003etemp2","grep '_SafeInit$' temp1 \u003e\u003etemp2","grep ' T _sqlite3_' temp1 \u003e\u003etemp2","echo 'EXPORTS' \u003etclsqlite3.def","sed 's/^.* T _//' temp2 | sort | uniq \u003e\u003etclsqlite3.def","i386-mingw32msvc-dllwrap \\"," --def tclsqlite3.def -v --export-all \\"," --driver-name i386-mingw32msvc-gcc \\"," --dlltool-name i386-mingw32msvc-dlltool \\"," --as i386-mingw32msvc-as \\"," --target i386-mingw32 \\"," -dllname tclsqlite3.dll -lmsvcrt tclsqlite3.o $TCLSTUBLIB","$NM sqlite3.o | grep ' T ' \u003etemp1","echo 'EXPORTS' \u003esqlite3.def","grep ' _sqlite3_' temp1 | sed 's/^.* _//' \u003e\u003esqlite3.def","i386-mingw32msvc-dllwrap \\"," --def sqlite3.def -v --export-all \\"," --driver-name i386-mingw32msvc-gcc \\"," --dlltool-name i386-mingw32msvc-dlltool \\"," --as i386-mingw32msvc-as \\"," --target i386-mingw32 \\"," -dllname sqlite3.dll -lmsvcrt sqlite3.o"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/codesourse/sqlcipher/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"mkdll.sh","displayUrl":"https://github.com/codesourse/sqlcipher/blob/ditto/mkdll.sh?raw=true","headerInfo":{"blobSize":"1.61 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"9e368d1","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fcodesourse%2Fsqlcipher%2Fblob%2Fditto%2Fmkdll.sh","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"49","truncatedSloc":"49"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"Shell","languageID":346,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/codesourse/sqlcipher/blob/ditto/mkdll.sh","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/codesourse/sqlcipher/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/codesourse/sqlcipher/raw/refs/heads/ditto/mkdll.sh","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":null},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/codesourse/sqlcipher/branches":{"post":"d_8euorW7Hrirseqszu4ikVEfW2BZ1-3mHtq0x8uhNgehWUU56tLE6Gjj_0tID1l-GhmxraR4dQS5tthHeQwSg"},"/repos/preferences":{"post":"5ncd5flNM_LvfAgZNKg-X0syPkO6kPxjoYnnTednvD3TMCUjXq9F9Du3_Jo03XDN7KBUuyX4-ZcEVYpsdHU53w"}}},"title":"sqlcipher/mkdll.sh at ditto · codesourse/sqlcipher","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-263cab1760dd.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1b17b3e7786a.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true}}}
0