我在查镀铬的绞股蓝和石膏文件。cflags和ldflags的角色是什么?
下面的代码意味着什么?
'cflags': '<!@(<(pkg-config) --cflags gstreamer-0.10)',
'ldflags': '<!@(<(pkg-config) --libs-only-L --libs-only-other gstreamer-0.10)',发布于 2014-07-03 05:04:01
我得研究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 yacchttps://stackoverflow.com/questions/24526279
复制相似问题