임베디드 | 라즈베리파이 | ARM | 리눅스 | Qt | 딥러닝


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문제는 해결되나

그 아래것은 해결되지않는다.