首页 >数据库 >mysql教程 >redhat 6.0 编译mysql 和 gtk_MySQL

redhat 6.0 编译mysql 和 gtk_MySQL

WBOY
WBOY原创
2016-05-31 08:49:46968浏览

Redhat

When I first time compile the gtk programs, it occurred many errors.


It said that many functions undefined. You must know that the compiler can't find the  defines of them.Then you should add the correct path for the compiler manually, next you will succeed compiled.
But how does it works?Use the command like this: $:gcc -o filename filename.c `pkg-config --cflags --libs gtk+-2.0`.Behind the filename.c we use "the Backward apostrophe"-below the esc key.


MYSQL was also made me confused when I began to compile it.Actually, the Linux operating system was designed by the best hackers in the world. So it designed by a  purpose that is user are best programmer.
That means users must configure everything themselves. So you find many errors when using the linux OS, but please don't scare because it can make become a good hacker.
OK, we turn back. In order to compile the programs contained mysql functions, just add the parameter$(mysql_config --cflags --libs). This is a environment variable, you can use command "echo $(mysql_config --cflags --libs)" to check what it is.eg:        $: gcc filename.c $(mysql_config --cflags --libs) -o filename 

As a Linux programmer, what you do is doing everything yourself. But I don't say Linux is hard to learn.In fact, it is easy to learn.
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn