Search found 52 matches

by aquilarubra
Thu Dec 27, 2018 8:37 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18503

Re: muse for windows

I found the line that fails, giving all the undefined references: build/muse/CMakeFiles/lv2host_module.dir/link.txt F:/msys64/mingw64/bin/g++.exe -std=c++11 -Werror=format-security -Wextra -Winvalid-pch -fexceptions -Wall -fPIC -std=c++11 -O2 -fomit-frame-pointer -ffast-math -fno-finite-math-only -W...
by aquilarubra
Wed Dec 26, 2018 2:51 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18503

Re: muse for windows

So far, I got good results. I could add _aligned_malloc instructions to replace posix_memalign. For example: lv2host.cpp #ifdef _WIN32 state->pluginCVPorts = (float **) _aligned_malloc(16, sizeof(float *) * numAllPorts); if(state->pluginCVPorts == NULL) { fprintf(stderr, "ERROR: LV2Synth::lv2st...
by aquilarubra
Tue Dec 25, 2018 7:28 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18503

muse for windows

Hi, I am looking into compiling MusE for Windows. If there is some collective effort, I think it is well possible to do. So far, I did this: Prepared a MSYS2/mingw environment on Windows. Created a custom compile_muse.sh (compile_muse_mingw.sh). Now, there are some functions that are Linux specific ...
by aquilarubra
Sun Dec 02, 2018 3:11 pm
Forum: MusE Sequencer
Topic: muse-git for arch
Replies: 25
Views: 5694

muse-git for arch

Here is the PKGBUILD for Arch to build MusE from git, for those who want to test the latest developments.
by aquilarubra
Sat Dec 01, 2018 6:17 pm
Forum: MusE Sequencer
Topic: gcc 8.2, python 3.7
Replies: 4
Views: 1201

Re: gcc 8.2, python 3.7

Hi, here are the changes to pyapi.cpp. static struct PyModuleDef muse = { PyModuleDef_HEAD_INIT, "muse", /* name of module */ "", /* module documentation, may be NULL */ -1, /* size of per-interpreter state of the module, or -1 if the module keeps state in global variables. */ g_...
by aquilarubra
Tue Nov 27, 2018 6:19 am
Forum: MusE Sequencer
Topic: gcc 8.2, python 3.7
Replies: 4
Views: 1201

Re: gcc 8.2, python 3.7

Thanks. I was missing replies here, but now that I enabled notifications I should get them. I am the same who posted the PKGBUILD, and now it was updated in the AUR repository. For some reason the attachment failed here. I will write later about the used thing. My compliments for the Windows attempt...
by aquilarubra
Sat Nov 24, 2018 8:18 pm
Forum: MusE Sequencer
Topic: gcc 8.2, python 3.7
Replies: 4
Views: 1201

gcc 8.2, python 3.7

Hi, I updated the Arch package, which I attach. I don't know why there were restrictions concerning gcc (version 6 was recommended). I could compile it with gcc 8.2 and also jack2. In the PKGBUILD, you can also see some patches (the sed commands), through which I enable Python 3.7. They should proba...