Mistranger / ftmtxt2seq

BSD 3-Clause "New" or "Revised" License
4 stars 0 forks source link

Potential Linux build or Wine Fix? #2

Open SleepyBoi2852 opened 11 months ago

SleepyBoi2852 commented 11 months ago

Trying to run the program using wine gives me this result:

~/Downloads/ftmtxt2seq$wine ./ftmtxt2seq.exe 02\ -\ ipi\ -\ Garten.ftm 
0074:err:ntdll:NtQueryInformationToken Unhandled token information class 19
0084:err:module:import_dll Library WDFLDR.SYS (which is needed by L"C:\\windows\\system32\\drivers\\LdScpVBus.sys") not found
0084:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\LdScpVBus": c0000142
0024:err:module:import_dll Library libgcc_s_dw2-1.dll (which is needed by L"Z:\\home\\[oopsiesnousernameforu]\\Downloads\\ftmtxt2seq\\ftmtxt2seq.exe") not found
0024:err:module:LdrInitializeThunk Importing dlls for L"Z:\\home\\[oopsiesnousernameforu]\\Downloads\\ftmtxt2seq\\ftmtxt2seq.exe" failed, status c0000135
~/Downloads/ftmtxt2seq$ wine: Unhandled page fault on execute access to 00000000 at address 00000000 (thread 0060), starting debugger...
0060:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 92 120" (1115)
Read the Wine Developers Guide on how to set up winedbg or another debugger

And when compiling it gives me an error about main.h which seems to not be included in the compilation process

~/Downloads/ftmtxt2seq-master/ftmtxt2seq-master$ cmake CMakeLists.txt 
-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: ~/Downloads/ftmtxt2seq-master/ftmtxt2seq-master
~/Downloads/ftmtxt2seq-master/ftmtxt2seq-master$ make
[ 16%] Building CXX object CMakeFiles/ftmtxt2seq.dir/ftmtxt.cpp.o
[ 33%] Building CXX object CMakeFiles/ftmtxt2seq.dir/main.cpp.o
~/Downloads/ftmtxt2seq-master/ftmtxt2seq-master/main.cpp:1:10: fatal error: main.h: No such file or directory
    1 | #include "main.h"
      |          ^~~~~~~~
compilation terminated.
make[2]: *** [CMakeFiles/ftmtxt2seq.dir/build.make:90: CMakeFiles/ftmtxt2seq.dir/main.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:83: CMakeFiles/ftmtxt2seq.dir/all] Error 2
make: *** [Makefile:91: all] Error 2