codylico

Results 17 comments of codylico

something you may have noticed already, but (on the left) the ball seems to be bouncing off a corner of one of the walls.

> But is there a work around to stop this from happening? I am not sure. I did some searching of past issues, and I found liabru/matter-js#745, which may be...

I recently got in contact with @nemequ, the owner of `munit`. @HappySeaFox Are you willing to help maintain the `munit` library?

_Outsider comment; feel free to ignore._ I can think of four options: 1. _Assuming you are aware of the test parameter support:_ You could write a mini-parser that encodes your...

It seems like other people have been running into similar problems in other code bases: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101605 https://stackoverflow.com/questions/68488777/vla-warning-for-exactly-matching-prototype https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101585 It seems like a faulty `-Wvla-parameter`, now enabled in GCC 11 as...

How about removing the whole thing (i.e. `char* const argv[MUNIT_ARRAY_PARAM(argc + 1)]` -> `char* const argv[]`)? Did you try this?

_outsider comment; feel free to ignore_ This kind of makes sense: ``` src/tests/munit.c:1836:47: warning: argument 4 of type 'char * const[argc + 1]' declared with mismatched bound 'argc + 1'...

I notice that the CMake file hard-codes `munit` to build in Release mode. Is that the intent? See [line 28 of CMakeLists.txt](https://github.com/nemequ/munit/blob/fad95f1df81182300c9b8c66091ff6aee3a997c9/CMakeLists.txt#L28).

I am okay with hard-coded Release mode in this case. Anyone else have thoughts?

_outsider comment; feel free to ignore:_ I just now built a vanilla munit using the Makefile on a Apple M1 box, and it seems to link and run just fine....