Невозможно построить с помощью файла Graphcs.h - PullRequest
0 голосов
/ 04 марта 2020

"Компиляция изменений проекта ...

  • Имя файла проекта: C: \ Users \ pc \ Desktop \ Graphics Test.dev
  • Имя компилятора: TDM-G CC 4.9.2 64-разрядная версия

Сборка make-файла ...

  • Имя файла: C: \ Users \ pc \ Desktop \ Makefile.win

Обработка make-файла ...

  • Процессор Makefile:% BinDir0% \ mingw32-make.exe
  • Команда: mingw32-make.exe -f "C: \ Users \ pc \ Desktop \ Makefile.win "all

Это ошибка, которую я получаю:

g++.exe -c "New folder (2)\Untitled2.cpp" -o "New folder (2)\Untitled2.o" -I"%CppIncludeDir0%" -I"%CppIncludeDir1%" -I"%CppIncludeDir2%" -I"%CppIncludeDir2%\c++" 

g++.exe "New folder (2)\Untitled2.o" -o "Graphics Test.exe" -L"%LibDir0%" -L"%LibDir1%" -static-libgcc

New folder (2)\Untitled2.o:Untitled2.cpp:(.text+0x3d): undefined reference to `initwindow'
New folder (2)\Untitled2.o:Untitled2.cpp:(.text+0x58): undefined reference to `line'
collect2.exe: error: ld returned 1 exit status

C:\Users\pc\Desktop\Makefile.win:25: recipe for target '"Graphics' failed

mingw32-make.exe: *** ["Graphics] Error 1"

вот мой код:

# include <graphics.h>

main(){

    initwindow(800,800);

    line(200,240,400,440);

    getch();
}
...