Dev C++ compilation error, permission denied

前端 未结 7 660
南笙
南笙 2021-01-18 08:22

I want to compile a code program using dev c++ compiler but my compiler didn\'t compile my code.The program consist of two files one is header and other is implementation .c

7条回答
  •  滥情空心
    2021-01-18 08:25

    C:\Dev-Cpp\Bin..\lib\gcc\mingw32\3.4.2........\mingw32\bin\ld.exe: cannot open output file Project1.exe: Permission denied collect2: ld returned 1 exit status

    This line here is the computer saying it does not have permission to work with the specified directory. Either save your work in a new folder which the program has permission to work with or run your program as an administrator.

    Kind of pointless responding to an old issue but if anyone else has this problem hopefully this will save them some time.

提交回复
热议问题