본문 바로가기
728x90

Research/Programming25

Qt, undefined reference to `vtable for g++ -Wl,-rpath,/usr/local/Trolltech/Qt-4.6.0/lib -o mythstb version.o main.o globalsettings.o action.o actionset.o mythcontrols.o keybindings.o keygrabber.o livemgrwnd.o chansearch.o channellist.o banner.o setup-language.o setup-avoutput.o svcmgrthread.o moc_mythcontrols.o moc_keygrabber.o moc_livemgrwnd.o moc_chansearch.o moc_channellist.o moc_banner.o moc_setup-language.o moc_setup-avoutput.o .. 2010. 1. 26.
Makefile: 변수 출력하기 8.12 Functions That Control Make These functions control the way make runs. Generally, they are used to provide information to the user of the makefile or to cause make to stop if some sort of environmental error is detected. $(error text...) Generates a fatal error where the message is text. Note that the error is generated whenever this function is evaluated. So, if you put it inside a command.. 2009. 12. 14.
[SQLITE] INSERT 형식) INSERT INTO table (column_list) VALUES (value_list); 예) INSERT INTO foods (name, type_id) VALUES ('Cinnamon Bobka', 1);foods 테이블에 name은 'Cinnamon Bobka', type_id는 1인 행을 insert한다. 만약에 value_list에 모든 컬럼의 값들을 제공하면, column_list는 생략가능 하다. 2009. 11. 18.
gcc 이야기 출처: gcc이야기 gcc는 예전에는 GNU C Compiler의 약자였으나 지금은 GNU Compiler Collection의 약자로 다양한(?) 언어의 컴파일러들의 집합체이다. gcc는 한마디로 GNU에서 개발된 ANSI C 표준을 따르는 C 언어 컴파일러라고 말할 수 있다. gcc는 ANSI C 표준에 따르기는 하지만 ANSI C 표준에는 없는 여러 가지 확장 기능이 있다. 또한 gcc는 통합개발환경(IDE)을 가지고 있지 않은 command line 컴파일러이다. 옛날 Turbo-C를 주로 사용해 보셨던 분들은 tcc.exe와 비슷하다고 생각하면 된다. (*) -v 옵션 현재 사용되고 있는 gcc의 버전을 나타내는 옵션이다. 특정 소프트웨어 패키지를 컴파일하기 위해 어느 버전 이상의 gcc를 쓰도.. 2009. 7. 22.
728x90