CE-Programming / app_tools

Extension to the CE toolchain that generates apps
17 stars 3 forks source link

Building fails during ld.alm #3

Open fundudeone opened 1 year ago

fundudeone commented 1 year ago

Tried to build both the hello_world and graphx/sprites examples with app_tools got the same error both times. I followed the instructions in readme, include is changed to app_tools/makefile. Here the error from running make in graphx/sprites (similar result with make app):

[compiling] src/gfx/global_palette.c
[compiling] src/gfx/oiram.c
[compiling] src/main.c
[lto opt] obj/lto.bc
[convimg] description
[linking] bin/DEMO.bin
/home/mint/CEdev/meta/ld.alm [1568]:

macro ? [272] :script.provide [19] (CALM)
Error: invalid expression.
make: *** [/home/mint/CEdev/meta/makefile.mk:291: bin/DEMO.bin] Error 2

I've had this result on both toolchain v11.0 and now 11.1 as well.

commandblockguy commented 1 year ago

You can fix that by removing the quotes around the DESCRIPTION variable in the makefile. I'm not entirely sure why it does that.

fundudeone commented 1 year ago

Ok, thanks for the help!