質問編集履歴
2
エラーの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -116,4 +116,18 @@
|
|
116
116
|
|
117
117
|
エラー
|
118
118
|
|
119
|
+
gcc kadai1.c -lSDL2 -lSDL2_gfx -lSDL2_ttf -lSDL2_image -lSDL2_mixer -L/UI1 -I/usr/local/include/SDL2 -Wl,-rpath,/usr/local/lib
|
120
|
+
|
121
|
+
kadai1.c: In function ‘main’:
|
122
|
+
|
123
|
+
kadai1.c:39:5: warning: implicit declaration of function ‘SDL_filledCircleColor’ [-Wimplicit-function-declaration]
|
124
|
+
|
125
|
+
SDL_filledCircleColor(renderer, 200, 200, 50, 0x00ff00ff);
|
126
|
+
|
127
|
+
^
|
128
|
+
|
129
|
+
/tmp/ccYdAjmQ.o: 関数 `main' 内:
|
130
|
+
|
131
|
+
kadai1.c:(.text+0x15f): `SDL_filledCircleColor' に対する定義されていない参照です
|
132
|
+
|
119
|
-
|
133
|
+
collect2: error: ld returned 1 exit status
|
1
エアーを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
|
3
|
+
コード
|
4
|
+
|
1
5
|
int main(int argc, char *argv[])
|
2
6
|
|
3
7
|
{
|
@@ -103,3 +107,13 @@
|
|
103
107
|
return 0;
|
104
108
|
|
105
109
|
}
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
```
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
エラー
|
118
|
+
|
119
|
+
too few aguments to function SDL_SetRenderDrawColor
|