separate out concept of modeling
view log » | |
build | view log » |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
[#311384] 2020/09/29 23:34:47 Booting image alpine/edge (default) on port 22257 [#311384] 2020/09/29 23:34:49 Waiting for guest to settle [#311384] 2020/09/29 23:34:56 Sending tasks [#311384] 2020/09/29 23:34:57 Sending build environment [#311384] 2020/09/29 23:34:57 Installing packages Warning: Permanently added '[localhost]:22257' (ECDSA) to the list of known hosts. fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz v20200917-1447-gb6b3ebb9d3 [http://dl-cdn.alpinelinux.org/alpine/edge/main] v20200917-1489-g49079a171f [http://dl-cdn.alpinelinux.org/alpine/edge/community] v20200917-1495-ged34d1376f [http://dl-cdn.alpinelinux.org/alpine/edge/testing] OK: 17420 distinct packages available Warning: Permanently added '[localhost]:22257' (ECDSA) to the list of known hosts. (1/47) Installing libpciaccess (0.16-r0) (2/47) Installing libdrm (2.4.102-r0) (3/47) Installing libpng (1.6.37-r1) (4/47) Installing freetype (2.10.2-r0) (5/47) Installing tslib (1.22-r0) (6/47) Installing directfb (1.7.7-r3) (7/47) Installing directfb-dev (1.7.7-r3) (8/47) Installing linux-headers (5.7.8-r0) (9/47) Installing libdrm-dev (2.4.102-r0) (10/47) Installing libxau (1.0.9-r0) (11/47) Installing xorgproto (2020.1-r0) (12/47) Installing libxau-dev (1.0.9-r0) (13/47) Installing libbsd (0.10.0-r0) (14/47) Installing libxdmcp (1.1.3-r0) (15/47) Installing libxcb (1.14-r1) (16/47) Installing libx11 (1.6.12-r0) (17/47) Installing libxext (1.3.4-r0) (18/47) Installing xcb-proto (1.14-r0) (19/47) Installing libxdmcp-dev (1.1.3-r0) (20/47) Installing libxcb-dev (1.14-r1) (21/47) Installing xtrans (1.4.0-r1) (22/47) Installing libx11-dev (1.6.12-r0) (23/47) Installing libxext-dev (1.3.4-r0) (24/47) Installing libxdamage (1.1.5-r1) (25/47) Installing libxfixes (5.0.3-r2) (26/47) Installing libxfixes-dev (5.0.3-r2) (27/47) Installing libxdamage-dev (1.1.5-r1) (28/47) Installing libxshmfence (1.3-r0) (29/47) Installing libxshmfence-dev (1.3-r0) (30/47) Installing mesa (20.1.8-r0) (31/47) Installing wayland-libs-server (1.18.0-r4) (32/47) Installing mesa-gbm (20.1.8-r0) (33/47) Installing mesa-glapi (20.1.8-r0) (34/47) Installing wayland-libs-client (1.18.0-r4) (35/47) Installing mesa-egl (20.1.8-r0) (36/47) Installing libxxf86vm (1.1.4-r2) (37/47) Installing mesa-gl (20.1.8-r0) (38/47) Installing mesa-gles (20.1.8-r0) (39/47) Installing libxml2 (2.9.10-r5) (40/47) Installing llvm10-libs (10.0.1-r0) (41/47) Installing zstd-libs (1.4.5-r0) (42/47) Installing mesa-osmesa (20.1.8-r0) (43/47) Installing mesa-xatracker (20.1.8-r0) (44/47) Installing libxxf86vm-dev (1.1.4-r2) (45/47) Installing mesa-dev (20.1.8-r0) (46/47) Installing sdl2 (2.0.12-r3) (47/47) Installing sdl2-dev (2.0.12-r3) Executing busybox-1.32.0-r3.trigger OK: 1235 MiB in 249 packages [#311384] 2020/09/29 23:35:01 Cloning repositories Cloning into 'Moon3D'... + cd Moon3D + git checkout -q 6c7f3e845c842c005f0fe2abeddd7e2da6fcb500 + cd Moon3D + git submodule update --init [#311384] 2020/09/29 23:35:02 Running task build |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
+ cd Moon3D + make test mkdir -p build/./test/ gcc -I/usr/local/include/SDL2 -O2 -g -Wall -Wextra -Wno-unused-function -c test/main.test.c -o build/./test/main.test.c.o In file included from test/tests.h:4, from test/main.test.c:1: test/main.test.c: In function 'TestMemoryPool': test/../src/everything.h:17:26: warning: value computed is not used []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-value-Wunused-value]8;;] 17 | #define PoolNext(pool) &(pool[PoolTotal(pool)++]) | ^~~~~~~~~~~~~~~~~~~~~~~~~~ test/main.test.c:78:2: note: in expansion of macro 'PoolNext' 78 | PoolNext(pool); | ^~~~~~~~ mkdir -p build/./test/ gcc -I/usr/local/include/SDL2 -O2 -g -Wall -Wextra -Wno-unused-function -c test/assertions.test.c -o build/./test/assertions.test.c.o mkdir -p build/./src/ gcc -DTEST -I/usr/local/include/SDL2 -O2 -g -Wall -Wextra -Wno-unused-function -c src/game.c -o build/./src/game.c.test.o src/game.c: In function 'RasterizePolygon': src/game.c:526:28: warning: unused parameter 'polygon' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-parameter-Wunused-parameter]8;;] 526 | void RasterizePolygon(int *polygon, Vertex *vertices, Renderer *renderer) | ~~~~~^~~~~~~ src/game.c:526:45: warning: unused parameter 'vertices' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-parameter-Wunused-parameter]8;;] 526 | void RasterizePolygon(int *polygon, Vertex *vertices, Renderer *renderer) | ~~~~~~~~^~~~~~~~ src/game.c:526:65: warning: unused parameter 'renderer' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-parameter-Wunused-parameter]8;;] 526 | void RasterizePolygon(int *polygon, Vertex *vertices, Renderer *renderer) | ~~~~~~~~~~^~~~~~~~ src/game.c: In function 'RenderParticle': src/game.c:645:30: warning: unused parameter 'particle' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-parameter-Wunused-parameter]8;;] 645 | void RenderParticle(Particle particle, Renderer *renderer) | ~~~~~~~~~^~~~~~~~ src/game.c:645:50: warning: unused parameter 'renderer' []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-parameter-Wunused-parameter]8;;] 645 | void RenderParticle(Particle particle, Renderer *renderer) | ~~~~~~~~~~^~~~~~~~ mkdir -p build/./src/ gcc -DTEST -I/usr/local/include/SDL2 -O2 -g -Wall -Wextra -Wno-unused-function -c src/vector.c -o build/./src/vector.c.test.o mkdir -p build/./src/ gcc -DTEST -I/usr/local/include/SDL2 -O2 -g -Wall -Wextra -Wno-unused-function -c src/transform.c -o build/./src/transform.c.test.o mkdir -p build/./src/ gcc -DTEST -I/usr/local/include/SDL2 -O2 -g -Wall -Wextra -Wno-unused-function -c src/plane.c -o build/./src/plane.c.test.o gcc -DTEST ./build/./test/main.test.c.o ./build/./test/assertions.test.c.o ./build/./src/game.c.test.o ./build/./src/vector.c.test.o ./build/./src/transform.c.test.o ./build/./src/plane.c.test.o -o ./build/moon_test -L/usr/local/lib -lSDL2 -lm ./build/moon_test ================================= 6 passed, 0 failed. |