digego / extempore

A cyber-physical programming environment
1.4k stars 127 forks source link

could not locate init.xtm #346

Closed vbsteja closed 5 years ago

vbsteja commented 5 years ago

Hey i recently come across extempore, wanted to give it a try and downloaded a binary, faced an issue while running the below line

(make-instrument synth fmsynth)

got below error,

stack-catch: () stack-catch: () stack-catch: () eval: unbound variable: make-instrument Trace:

so given a try to build from source option using the instructions in docs. but now when i ran extempore from terminal got the below error.

ERROR: Could not locate file: init.xtm Exiting system!!

your help would be appreciated @digego . am i missing something during the setup?

digego commented 5 years ago

Hi,

Make sure you that you run from the top level extempore directory. Extempore will expect to find ./runtime/init.xtm. If you really must run extempore from elsewhere then you'll need to set the command line argument --sharedir (./extempore --help)

Cheers, Andrew.

On Sun, Dec 2, 2018 at 1:56 AM surya notifications@github.com wrote:

Hey i recently come across extempore, wanted to give it a try and downloaded a binary, faced an issue while running the below line

(make-instrument synth fmsynth)

got below error,

stack-catch: () stack-catch: () stack-catch: () eval: unbound variable: make-instrument Trace:

so given a try to build from source option using the instructions in docs. but now when i ran extempore from terminal got the below error. ARCH : x86_64-unknown-linux-gnu CPU : broadwell ATTRS : -sse4a,-avx512bw,+cx16,-tbm,+adx,-fma4,-avx512vl,+prfchw,+bmi2,-avx512pf,+fsgsbase,+avx,-avx512cd,-rtm,+popcnt,+fma,+bmi,+aes,+rdrnd,+sse4.1,+sse4.2,+avx2,-avx512er,+sse,+lzcnt,+pclmul,-avx512f,+f16c,+ssse3,+mmx,+cmov,-xop,+rdseed,+movbe,-hle,-sha,+sse2,+sse3,-avx512dq LLVM : 3.7.0 MCJIT Output Device : default Input Device : SampleRate : 44100 Channels Out : 2 Channels In : 0 Frames : 128 Latency : 0.0348299 sec

ERROR: Could not locate file: init.xtm Exiting system!!

your help would be appreciated @digego https://github.com/digego . am i missing something during the setup?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/digego/extempore/issues/346, or mute the thread https://github.com/notifications/unsubscribe-auth/AAh3qRCIaCgA_nGALqZ-R9AQXwWF89KHks5u0qbLgaJpZM4Y89Jr .

vbsteja commented 5 years ago

:+1: that works, thanks for the reply.