本文简要介绍ruby语言中 MakeMakefile.enable_config
的用法。
用法
enable_config(config, default=nil) { |config, default| ... }
测试是否存在 --enable-
config
或 --disable-
config
选项。如果给出了启用选项,则返回true
,如果给出了禁用选项,则返回false
,否则返回默认值。
这对于添加自定义定义(例如调试信息)很有用。
例子:
if enable_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
end
相关用法
- Ruby MakeMakefile.have_const用法及代码示例
- Ruby MakeMakefile.convertible_int用法及代码示例
- Ruby MakeMakefile.create_header用法及代码示例
- Ruby MakeMakefile.with_config用法及代码示例
- Ruby MakeMakefile.create_makefile用法及代码示例
- Ruby MatchData.pre_match用法及代码示例
- Ruby Matrix lup()用法及代码示例
- Ruby Matrix unitary?()用法及代码示例
- Ruby Matrix symmetric?()用法及代码示例
- Ruby Matrix t()用法及代码示例
- Ruby Matrix identity()用法及代码示例
- Ruby Matrix hash()用法及代码示例
- Ruby Matrix hadamard_product()用法及代码示例
- Ruby Matrix singular?()用法及代码示例
- Ruby Math sqrt()用法及代码示例
- Ruby Matrix round()用法及代码示例
- Ruby Matrix collect()用法及代码示例
- Ruby Math.acosh用法及代码示例
- Ruby Markdown类用法及代码示例
- Ruby Matrix hermitian?()用法及代码示例
- Ruby Matrix row_vectors()用法及代码示例
- Ruby Matrix conjugate()用法及代码示例
- Ruby Math.asinh用法及代码示例
- Ruby Matrix cofactor()用法及代码示例
- Ruby Matrix rectangular()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 MakeMakefile.enable_config。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。