살아가는 이야기
mingw 업데이트 후기 본문
예전에 설치하여 쓰고 있던 mingw를 드디어 업데이트하였다. 이전에 쓴 글(https://woogyun.tistory.com/412)의 간편 버전에 따라, 명령 프롬프트에서 다음 명령어로 업데이트하였다.
> mingw-get update
> mingw-get upgrade
다음과 같은 오류(이미 있는 파일을 덮어쓸 수 없다는 오류)가 다수 발생하였지만 다행히 무사히 업데이트된 것 같다.
mingw-get: *** ERROR *** C:\MinGW\/include/stdlib.h: extraction failed
mingw-get: *** ERROR *** C:\MinGW\/include/stdlib.h: probable package conflict; existing file not overwritten
mingw-get: *** ERROR *** C:\MinGW\/include/profile.h: extraction failed
mingw-get: *** ERROR *** C:\MinGW\/include/profile.h: probable package conflict; existing file not overwritten
mingw-get: *** ERROR *** C:\MinGW\/include/strings.h: extraction failed
mingw-get: *** ERROR *** C:\MinGW\/include/strings.h: probable package conflict; existing file not overwritten
업데이트 전 GCC 버전은 다음과 같이 4.8.1이었는데,
C:\Users\woogyun> gcc --version
gcc (GCC) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
업데이트 후 GCC 버전을 살펴보니... 세상에, 6.3.0으로 바뀌었다.
C:\Users\woogyun> gcc --version
gcc (MinGW.org GCC-6.3.0-1) 6.3.0
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
도끼 자루 썩는 줄 모르고 뭘하고 있었는지 모르겠다.
Comments