Re: [racket-users] running the wrong sqlite3

2019-08-20 Thread Jens Axel Søgaard
And if you are on macOS: mbp:metapict soegaard$ export DYLD_PRINT_LIBRARIES=1 mbp:metapict soegaard$ export DYLD_PRINT_LIBRARIES_POST_LAUNCH=1 mbp:metapict soegaard$ export DYLD_PRINT_RPATHS=1 /Jens Axel Den tir. 20. aug. 2019 kl. 18.49 skrev 'John Clements' via Racket Users < racket-users@goog

Re: [racket-users] running the wrong sqlite3

2019-08-20 Thread 'John Clements' via Racket Users
In that case, perhaps you can watch the calls to dlopen with strace? See https://stackoverflow.com/questions/5103443/how-to-check-what-shared-libraries-are-loaded-at-run-time-for-a-given-process for something that might be helpful. John > On Aug 20, 2019, at 11:30, James Platt wrote: > > >

Re: [racket-users] running the wrong sqlite3

2019-08-20 Thread James Platt
On Aug 19, 2019, at 9:24 PM, John Clements wrote: > Perhaps you need to configure your lib-search-dir setting? > > https://docs.racket-lang.org/raco/config-file.html?q=lib-search-dir#%28idx._%28gentag._65._%28lib._scribblings%2Fraco%2Fraco..scrbl%29%29%29 Thanks for the help but I think that's

Re: [racket-users] running the wrong sqlite3

2019-08-19 Thread 'John Clements' via Racket Users
Perhaps you need to configure your lib-search-dir setting? https://docs.racket-lang.org/raco/config-file.html?q=lib-search-dir#%28idx._%28gentag._65._%28lib._scribblings%2Fraco%2Fraco..scrbl%29%29%29 John > On Aug 19, 2019, at 15:42, James Platt wrote: > > I'm having an issue where I can't see

[racket-users] running the wrong sqlite3

2019-08-19 Thread James Platt
I'm having an issue where I can't seem to get Racket to run the right version of sqlite3. At least, I'm assuming that's the problem because the syntax error below occurs in an older version but not the current version of sqlite3. My Terminal command path has the correct version. What can I do