Search found 52 matches

by aquilarubra
Tue Feb 19, 2019 11:39 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

I am running tests and there is another couple of fixes. Bear with me.
by aquilarubra
Mon Feb 18, 2019 8:54 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

Yes, I realized a mess was happening :D Ok, let's fix it. Maybe it's better I wait a moment that you update your changes. Then I will check everything again. Thanks for cmake tips. I really don't know cmake. _WIN32 and _WIN64 seem hardcoded also in other libraries that MusE uses. So, maybe it's a go...
by aquilarubra
Sat Feb 16, 2019 8:36 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

Thank you Tim. I could progress now to 90% in the Windows compilation. It seems I forgot something, but I will work it out in the next days.
by aquilarubra
Sat Feb 16, 2019 4:41 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

I cloned git and I am updating it with all my changes. I saw that much code changed in the last month. Unfortunately, I stumbled in muse/waveedit/wavecanvas.cpp, which was using QProcess. Now it was changed to use fork(). So my compilation stops there now and I could not verify it to the end. Can so...
by aquilarubra
Fri Feb 15, 2019 4:30 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

I would prefer to get the changes in master instead of branching. I kept everything as is, only added defines for windows. Only 2 files needed to be modified and I could not put a define. I used mingw64 on Windows, with default mingw qt. I prepared a cmake variant for windows. I'll need to make a de...
by aquilarubra
Fri Feb 15, 2019 2:06 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

I think I solved the QT issue. There is quite a mess with paths, as it seems MusE expects them in precise locations. I also found that I must launch jack before. So far, I had progress. It seems it can load everything, but then it won't open (probably crashed somewhere). E:\msys64\usr\src\aaa>muse3....
by aquilarubra
Fri Feb 15, 2019 11:06 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

Tried now. Launching the application gives this: E:\msys64\usr\src\aaa>muse3.exe creating new config... FAILED! creating new qt config... FAILED! Config File </.config/MusE/MusE.cfg> qt.qpa.plugin: Could not find the Qt platform plugin "windows" in "" This application failed to s...
by aquilarubra
Fri Feb 15, 2019 8:53 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

In the true, I would like to fix the cmake to include the missing library. It will serve for issues with other libraries in the future.

I tried to launch the exe, indeed, but I need to organize all the files in a package first, because it was obviously not finding all the dlls.
by aquilarubra
Wed Feb 06, 2019 6:31 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

Great man! It compiled. I already have muse3.exe. Now, next issue :lol: Last .dlls. [ 96%] Linking CXX shared library deicsonze.dll CMakeFiles\deicsonze.dir/objects.a(deicsonzegui.obj):deicsonzegui.cpp:(.text+0x13575): undefined reference to `Awl::AbstractSlider::setMinLogValue(double)' CMakeFiles\d...
by aquilarubra
Mon Feb 04, 2019 5:15 pm
Forum: MusE Sequencer
Topic: muse-git for arch
Replies: 25
Views: 5590

Re: muse-git for arch

I could do it, as I also made it. I just need a few days, because I am quite busy.
by aquilarubra
Sun Feb 03, 2019 5:03 am
Forum: MusE Sequencer
Topic: muse-git for arch
Replies: 25
Views: 5590

Re: muse-git for arch

That's strange. The sed command basically adds python 3.7 compatibility by changing a call and adding a structure. It should be modified in git, or a patch should be made instead of the sed command. The actual PKGBUILD won't compile without the sed command, as you would have to use python 2.7. Try t...
by aquilarubra
Thu Jan 31, 2019 7:50 pm
Forum: MusE Sequencer
Topic: muse-git for arch
Replies: 25
Views: 5590

Re: muse-git for arch

I cannot retry at the moment, so I reupload my PKGBUILD. Maybe I changed something after the initial post. This one is the one I personally used, which compiled fine. If there are issues again, I will investigate.
by aquilarubra
Tue Jan 22, 2019 10:41 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

I can duplicate the link error, no clue yet what the problem is though. Confusing. I am trying to get some help in stackoverflow: https://stackoverflow.com/questions/54304427/undefined-reference-to-vtable-class They ask that I provide a minimal example, extracting the code of QtTimer. I am not that...
by aquilarubra
Fri Jan 18, 2019 3:26 pm
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

Latest progress: enforced alsa to off for _win32 build in all code. Refined poll mechanism. Now I am left with the last issue: Linking CXX executable muse3.exe driver/libmuse_driver.a(qttimer.obj):qttimer.cpp:(.rdata$.refptr._ZTVN8MusECore10InnerTimerE[.refptr._ZTVN8MusECore10InnerTimerE]+0x0): unde...
by aquilarubra
Fri Jan 18, 2019 10:31 am
Forum: MusE Sequencer
Topic: muse for windows
Replies: 77
Views: 18368

Re: muse for windows

I fixed also the jack issue. Here is the progress so far. MINGW64 /usr/src/muse-win32/muse3/build $ cmake -DCMAKE_BUILD_TYPE=release -G "MinGW Makefiles" -DCMAKE_SH="CMAKE_SH-NOTFOUND" -Wno-dev .. && ../fix_make_paths.pl -- The C compiler identification is GNU 8.2.1 -- Th...