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
I'm sure I'm doing something silly and rookie-ish so I apologize in advance.
I'm on Arch Linux, I've typed the git clone command as per the readme, cd minecraft-weekend and make
and I receive the following error while trying to make cglm:
(I've shortened the paths below, sorry the new lines and spacing is kinda gone) ..minecraft-weekend/lib/cglm/src/vec4.c:127:25: error: argument 1 of type 'float[4]' with mismatched bound [-Werror=array-parameter=] 127 | glmc_vec4_scale_as(vec4 v, float s, vec4 dest) { | ~~~~~^ In file included from ../minecraft-weekend/lib/cglm/src/../include/cglm/call.h:17, from ../minecraft-weekend/lib/cglm/src/vec4.c:9: ../minecraft-weekend/lib/cglm/src/../include/cglm/call/vec4.h:102:25: note: previously declared as 'float[3]' 102 | glmc_vec4_scale_as(vec3 v, float s, vec3 dest); | ~~~~~^ ../minecraft-weekend/lib/cglm/src/vec4.c:127:42: error: argument 3 of type 'float[4]' with mismatched bound [-Werror=array-parameter=] 127 | glmc_vec4_scale_as(vec4 v, float s, vec4 dest) { | ~~~~~^~~~ In file included from ../minecraft-weekend/lib/cglm/src/../include/cglm/call.h:17, from ../minecraft-weekend/lib/cglm/src/vec4.c:9: ../minecraft-weekend/lib/cglm/src/../include/cglm/call/vec4.h:102:42: note: previously declared as 'float[3]' 102 | glmc_vec4_scale_as(vec3 v, float s, vec3 dest); | ~~~~~^~~~ cc1: all warnings being treated as errors
The text was updated successfully, but these errors were encountered:
ScoreUnder
added a commit
to ScoreUnder/minecraft-weekend
that referenced
this issue
Feb 9, 2022
I'm sure I'm doing something silly and rookie-ish so I apologize in advance.
I'm on Arch Linux, I've typed the git clone command as per the readme, cd minecraft-weekend and make
and I receive the following error while trying to make cglm:
(I've shortened the paths below, sorry the new lines and spacing is kinda gone)
..minecraft-weekend/lib/cglm/src/vec4.c:127:25: error: argument 1 of type 'float[4]' with mismatched bound [-Werror=array-parameter=] 127 | glmc_vec4_scale_as(vec4 v, float s, vec4 dest) { | ~~~~~^ In file included from ../minecraft-weekend/lib/cglm/src/../include/cglm/call.h:17, from ../minecraft-weekend/lib/cglm/src/vec4.c:9: ../minecraft-weekend/lib/cglm/src/../include/cglm/call/vec4.h:102:25: note: previously declared as 'float[3]' 102 | glmc_vec4_scale_as(vec3 v, float s, vec3 dest); | ~~~~~^ ../minecraft-weekend/lib/cglm/src/vec4.c:127:42: error: argument 3 of type 'float[4]' with mismatched bound [-Werror=array-parameter=] 127 | glmc_vec4_scale_as(vec4 v, float s, vec4 dest) { | ~~~~~^~~~ In file included from ../minecraft-weekend/lib/cglm/src/../include/cglm/call.h:17, from ../minecraft-weekend/lib/cglm/src/vec4.c:9: ../minecraft-weekend/lib/cglm/src/../include/cglm/call/vec4.h:102:42: note: previously declared as 'float[3]' 102 | glmc_vec4_scale_as(vec3 v, float s, vec3 dest); | ~~~~~^~~~ cc1: all warnings being treated as errors
The text was updated successfully, but these errors were encountered: