Git Product home page Git Product logo

Comments (4)

heysokam avatar heysokam commented on May 28, 2024 3

Fixed by doing two things

cd ./lib/cglm
git checkout 2a4748d    # As mentioned in https://github.com/recp/cglm/issues/240
cd ../../
make libs

Editing file src/util/ivec2s.h and disabling the union type

#if 0
typedef union ivec2s {
  ivec2 raw;
#if CGLM_USE_ANONYMOUS_STRUCT
  struct {
    int x;
    int y;
  };
#endif
} ivec2s;
#endif

The game then compiles normally

from minecraft-weekend.

korleis-hvordan avatar korleis-hvordan commented on May 28, 2024

Just delete the definition in ivec2s.h

from minecraft-weekend.

bramtechs avatar bramtechs commented on May 28, 2024

Try checking out cglm branch v0.8.4:

cd ./lib/cglm
git checkout v0.8.4
cd ../../
make libs
make
./bin/game

from minecraft-weekend.

anthonywww avatar anthonywww commented on May 28, 2024

I don't have clang and didn't wanna install it so I change the CC to gcc and just removed -fbracket-depth=1024 from the Makefile.

All works great, except I tried digging down for a while and this happened, not sure if it's related but cool none the less!

game: src/world/world.c:191: world_heightmap_recalculate: Assertion `world_in_bounds(self, (ivec3s) {{ p.x, 0, p.y }})' failed.

from minecraft-weekend.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.