살아가는 이야기

mingw GCC 컴파일 시 권한 문제(permission denied problem) 본문

컴퓨터, 풀어그림

mingw GCC 컴파일 시 권한 문제(permission denied problem)

우균 2014. 5. 27. 06:04

Windows 7이나 Windows 8에서 MinGW GCC를 설치한 후에 컴파일 시 권한 문제가 발생할 수 있다.

이를 해결하는 방법은 두 가지 방법이 있는데, 

1. 하나는 MinGW 설치 프로그램을 관리자 권한으로 실행(마우스 우클릭후 팝업 메뉴에서 선택할 수 있음)하여 다시 설치하는 방법이고

2. 두 번째 방법은 명령 프롬프트 창을 관리자 권한으로 실행하여 gcc를 실행하는 방법이다.

아무래도 매번 관리자 권한으로 실행하는 것이 번거로우므로 1번이 진정한 해결방법이라고 생각한다. 그러므로 2번을 수행하여 컴파일이 된다면 1번을 수행해 보는 것이 좋겠다.


===== For English Users =====

There occurs "permission denied" problem compiling a C code using MinGW in the command prompt in Window 7 or 8.

There are two solutions to solve this problem:

1. Installing MinGW again in "Administrative Mode" (with the right-click of icon).

2. Executing the command prompt in "Administrative Mode" every time.

The 2nd solution can be cumbersome but it can be used as a test. Try the 2nd. If it works, try the 1st solution.


Comments