You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was going through compiling for my laptop(M2 Mac Air) to play on the go and can not get it to compile following the instructions here on github.
BLUF: I think that i'm either experiancing some sort of mismatch in software versions or it's purely a symtom of trying this on an ARM Mac vs an intel mac.
These is are the issues I ran into while attempting to compile through the terminal:
Attempt 1: Followed the guide "to a T" and got this when trying to make:
src/messaging.c:2394:21: error: passing arguments to 'VWF_RenderSingle' without a prototype is deprecated in all versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
VWF_RenderSingle(TEXTCMD_PARAM(cmd));
^
In file included from src/messaging.c:1:
src/messaging.h:110:6: error: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a subsequent definition [-Werror,-Wdeprecated-non-prototype]
void VWF_RenderSingle();
^
src/messaging.c:2512:6: note: conflicting prototype is here
void VWF_RenderSingle(int c) { // 8ecab8
^
2 errors generated.
make: *** [src/messaging.o] Error 1
What is your build target?
Mac
The text was updated successfully, but these errors were encountered:
Describe your bug here. And how to reproduce it.
Was going through compiling for my laptop(M2 Mac Air) to play on the go and can not get it to compile following the instructions here on github.
BLUF: I think that i'm either experiancing some sort of mismatch in software versions or it's purely a symtom of trying this on an ARM Mac vs an intel mac.
These is are the issues I ran into while attempting to compile through the terminal:
Attempt 1: Followed the guide "to a T" and got this when trying to make:
src/messaging.c:2394:21: error: passing arguments to 'VWF_RenderSingle' without a prototype is deprecated in all versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
VWF_RenderSingle(TEXTCMD_PARAM(cmd));
^
In file included from src/messaging.c:1:
src/messaging.h:110:6: error: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a subsequent definition [-Werror,-Wdeprecated-non-prototype]
void VWF_RenderSingle();
^
src/messaging.c:2512:6: note: conflicting prototype is here
void VWF_RenderSingle(int c) { // 8ecab8
^
2 errors generated.
make: *** [src/messaging.o] Error 1
What is your build target?
Mac
The text was updated successfully, but these errors were encountered: