gyp中cflags和ldflags之间的区别是什么?

时间:2014-07-02 08:24:00

标签: chromium gyp

我正在研究gyp&铬的gypi文件。 cflagsldflags的作用是什么?

以下代码是什么意思?

 'cflags': '<!@(<(pkg-config) --cflags gstreamer-0.10)',

 'ldflags': '<!@(<(pkg-config) --libs-only-L --libs-only-other gstreamer-0.10)',

1 个答案:

答案 0 :(得分:2)

我不得不研究一下makefile。并找到了:

cflags - this is used to set environment variable and configuration option for C compiler
ldflag - flag for ld linker

并且还有其他标志如下:

ARFLAGS - for ar achiver
ASFLAGS - for as assembler
CXXFLAGS - for c++ compiler
COFLAGS - for co utility
CPPFLAGS - for C preprocessor
FFLAGS - for Fortran compiler
LFLAGS - for lex
PFLAGS - for Pascal compiler
YFLAGS - for yacc