Nawal Husnoo
Nawal Husnoo
Compiled with ``` avr-gcc -o three4th.out \ -Wall -gdwarf-2 -Os -std=gnu99 \ -mmcu=attiny85 \ -fno-inline-small-functions \ -ffunction-sections -fdata-sections \ -Wl,--relax,--gc-sections \ -Wl,--undefined=_mmcu,--section-start=.mmcu=0x910000 \ three4th.c \ -I/nix/store/25w4x6ggjzaq8cjjsx60bx7yw07h447x-simavr-1.3/include/simavr/avr/ ```
Attempting this on an actual chip shows the overflow interrupt does fire, so I suspect this means simavr doesn't implement it...
Are you thinking of something like sympy? E.g. https://docs.sympy.org/latest/tutorial/simplification.html I've found if I put print("some_string") inside a function in a code block and use , it turns out okay. If...
https://github.com/ashinn/chibi-scheme/issues/875 Does this help?
Hi, The issue with running make clibs.c and then make ....static, is that the latter completely disregards clibs.c: ``` cc -Wall -g -g3 -O3 -static -DSEXP_USE_DL=0 -o chibi-scheme-static main.o gc.o...
To answer my own question above - 0.7.3 was the last time the static stuff worked as advertised: ``` git checkout 0.7.3 make clibs.c make -B chibi-scheme-static SEXP_USE_DL=0 CPPFLAGS=-DSEXP_USE_STATIC_LIBS ```
Respectfully, the manual says: ``` make -B chibi-scheme-static SEXP_USE_DL=0 CPPFLAGS=-DSEXP_USE_STATIC_LIBS ``` which ends in ``` cc -Wall -DSEXP_USE_DL=0 -g -g3 -O3 -static -DSEXP_USE_DL=0 -o chibi-scheme-static main.o gc.o sexp.o bignum.o gc_heap.o...
Oh that makes more sense, thank you!
> LD_LIBRARY_PATH On nixos, I've had to do LD_LIBRARY_PATH=./ ./chibi-scheme [.....]
~~ Turned out the problem was that my images weren't the right shape? When I resized them to match the label on the model, they worked fine! e.g. 640x192px. ~~...