What does the gcc accent character mean/do? -


i have following gcc command taken tutorial compile simple mysql c test program.

gcc mysql_test.c `mysql_config --cflags --libs` 

i trying understand happening here mysql_config. cannot find information googling or searching use of accents (the lower case tilde character) in gcc commands. don't see relevant in gcc options index.

can explain or describe gcc process accent invoking?

the backticks here shell, not gcc. shell executes command inside backticks , substitutes output of command. presumably msql_config command options produces options should pass gcc.


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -