Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Breeder

Trouble Compiling Zandronum, Twister OS, Raspberry Pi 400

Recommended Posts

Hello, this post is much the same as my recent GzDOOM Compiling post. I am on a Raspberry Pi 4 running Debian based Twister OS, and am using the Wiki guide on how to compile Zandronum on Linux, but I get so far then end up with this error:
 

/home/pi/zandronum_build/zandronum/src/p_acs.cpp:4769:2: error: jump to case label [-fpermissive]
  default:
  ^~~~~~~
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:4489:16: note:   crosses initialization of ‘FRenderStyle oldRenderStyle’
   FRenderStyle oldRenderStyle = actor->RenderStyle;
                ^~~~~~~~~~~~~~
/home/pi/zandronum_build/zandronum/src/p_acs.cpp: In member function ‘int DLevelScript::CallFunction(int, int, SDWORD*)’:
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:7526:68: warning: comparison of integer expressions of different signedness: ‘int’ and ‘ULONG’ {aka ‘long unsigned int’} [-Wsign-compare]
        if (( NETWORK_GetState() == NETSTATE_SERVER ) && ( oldvalue != players[ulPlayer].ulWins ))
                                                           ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:7538:68: warning: comparison of integer expressions of different signedness: ‘int’ and ‘ULONG’ {aka ‘long unsigned int’} [-Wsign-compare]
        if (( NETWORK_GetState() == NETSTATE_SERVER ) && ( oldvalue != players[ulPlayer].ulDeathCount ))
                                                           ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[ 50%] Building CXX object src/CMakeFiles/zdoom.dir/p_conversation.o
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:6706:18: warning: this statement may fall through [-Wimplicit-fallthrough=]
     case 4: tid2 = args[3];
             ~~~~~^~~~~~~~~
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:6707:5: note: here
     case 3: tid1 = args[2];
     ^~~~
/home/pi/zandronum_build/zandronum/src/p_ceiling.cpp: In static member function ‘static DCeiling* DCeiling::Create(sector_t*, DCeiling::ECeiling, line_t*, int, fixed_t, fixed_t, fixed_t, int, int, int, bool)’:
/home/pi/zandronum_build/zandronum/src/p_ceiling.cpp:455:24: warning: this statement may fall through [-Wimplicit-fallthrough=]
   ceiling->m_TopHeight = sec->ceilingplane.d;
   ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/home/pi/zandronum_build/zandronum/src/p_ceiling.cpp:456:2: note: here
  case ceilLowerAndCrush:
  ^~~~
/home/pi/zandronum_build/zandronum/src/p_acs.cpp: In member function ‘int DLevelScript::RunScript()’:
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:9020:16: warning: this statement may fall through [-Wimplicit-fallthrough=]
    resultValue = STACK(1);
/home/pi/zandronum_build/zandronum/src/p_acs.cpp:9021:3: note: here
   case PCD_DROP: //fall through.
   ^~~~
make[2]: *** [src/CMakeFiles/zdoom.dir/build.make:1506: src/CMakeFiles/zdoom.dir/p_acs.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [CMakeFiles/Makefile2:1075: src/CMakeFiles/zdoom.dir/all] Error 2
make: *** [Makefile:84: all] Error 2


 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×