
fixed a bug were stdin was set to nonblocking and never reset back to blocking. This caused STDOUT to become nonblock, and for some reason glibc cannot deal with it, but every other libc could. uh.
7 lines
82 B
Makefile
7 lines
82 B
Makefile
CFLAGS = -lm
|
|
|
|
build:
|
|
cc ./main.c $(CFLAGS) -DVBUF -o ./cube
|
|
|
|
run: build
|
|
./cube
|