我正在研究gyp&铬的gypi文件。 cflags
和ldflags
的作用是什么?
以下代码是什么意思?
'cflags': '<!@(<(pkg-config) --cflags gstreamer-0.10)',
'ldflags': '<!@(<(pkg-config) --libs-only-L --libs-only-other gstreamer-0.10)',
答案 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