Failed to set controlling terminal 에러 해결방법
프로그래밍/Qt2014. 4. 21. 15:28
Failed to set controlling terminal : .... 에러가 날 때 해결방법이다.
이 방법 사용할때 Qt 프로그램은 잠시 꺼줘야한다.
http://ftp.gnu.org/gnu/gdb/
gdb 최신버전 보고 다운받아라
wget http://ftp.gnu.org/gnu/gdb/gdb-7.7.tar.gz
tar xvfz gdb-7.7.tar.gz
cd gdb-7.7
./configure
make
cp gdb/gdb /usr/local/bin
Take care about that the /usr/local/bin is at the beginning of the PATH you are using while running QtCreator.
You can place the following line into your .profile:
export PATH=$PATH:/usr/local/bin
위와 같이해주면 GDB문제는 해결되나
그 아래것은 해결되지않는다.
'프로그래밍 > Qt' 카테고리의 다른 글
Qt 버튼 생성 코드 및 설명 사이트 모음 (0) | 2014.11.21 |
---|---|
리눅스 Qt 프로그래밍 관련 사이트 모음 (0) | 2014.11.21 |
Qt listview 에 header 넣는 방법 (0) | 2014.04.25 |
XGetVisualInfo returned 0 visuals 에러 해결방법 (0) | 2014.04.21 |
bigbuckbunny 각종 테스트 영상때 사용하는 귀여운 애니메이션 (0) | 2014.04.21 |