72件ヒット
[1-72件を表示]
(0.099秒)
ライブラリ
- mkmf (72)
キーワード
-
arg
_ config (12) -
dir
_ config (12) -
enable
_ config (24) -
with
_ config (24)
検索結果
先頭5件
- Kernel
# with _ config(config , default = nil) {|config , default| . . . } -> bool | String - Kernel
# with _ config(config , default = nil) -> bool | String - Kernel
# enable _ config(config , default) {|config , default| . . . } -> bool | String - Kernel
# dir _ config(target , idefault = nil , ldefault = nil) -> [String , String] - Kernel
# arg _ config(config , default) { . . . } -> object | String | true | nil
-
Kernel
# with _ config(config , default = nil) {|config , default| . . . } -> bool | String (6317.0) -
configure のオプションを検査します。
...ョンを検査します。
configure のオプションに --with-<config> が指定された場合は真を返しま
す。--without-<config> が指定された場合は偽を返します。どちらでもない場
合は default を返します。
これはデバッグ情報などのカスタ......定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if with_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
end... -
Kernel
# with _ config(config , default = nil) -> bool | String (6217.0) -
configure のオプションを検査します。
...ョンを検査します。
configure のオプションに --with-<config> が指定された場合は真を返しま
す。--without-<config> が指定された場合は偽を返します。どちらでもない場
合は default を返します。
これはデバッグ情報などのカスタ......定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if with_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
end... -
Kernel
# enable _ config(config , default) {|config , default| . . . } -> bool | String (317.0) -
configure のオプションを検査します。
...します。どちらでもな
い場合は default を返します。
これはデバッグ情報などのカスタム定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例... -
Kernel
# dir _ config(target , idefault = nil , ldefault = nil) -> [String , String] (302.0) -
configure オプション --with-TARGET-dir, --with-TARGET-include, --with-TARGET-lib をユーザが extconf.rb に指定できるようにします。
...configure オプション
--with-TARGET-dir,
--with-TARGET-include,
--with-TARGET-lib
をユーザが extconf.rb に指定できるようにします。
--with-TARGET-dir オプションは
システム標準ではない、
ヘッダファイルやライブラリがあるディレクトリをま......とめて指定するために使います。
ユーザが extconf.rb に --with-TARGET-dir=PATH を指定したときは
$CFLAGS に "-IPATH/include" を、
$LDFLAGS に "-LPATH/lib" を、
それぞれ追加します。
--with-TARGET-include オプションは
システム標準ではないヘッ......extconf.rb に --with-TARGET-include=PATH を指定したときは
$CFLAGS に PATH を追加します。
--with-TARGET-lib オプションは
システム標準ではないライブラリのディレクトリを指定するために使います。
ユーザが extconf.rb に --with-TARGET-lib=PATH... -
Kernel
# arg _ config(config , default) { . . . } -> object | String | true | nil (221.0) -
configure オプション --config の値を返します。
...指定します。
@param default 引数 config で指定したオプションのデフォルト値を指定します。
@return オプションが指定されてた場合は true を、指定されなかった場合は
nil を返します。
引数 default、あるいはブロッ......ない場合に引数 default の値かブロックの評価結果を返します
(両方指定した場合はブロックが優先されます)。
オプションに引数が指定されていた場合は指定した文字列を返します。
例えば extconf.rb で arg_config......メソッドを使う場合、
$ ruby extconf.rb --foo --bar=baz
と実行したとき、arg_config("--foo") の値は true、
arg_config("--bar") の値は "baz" です。... -
Kernel
# enable _ config(config , default) -> bool | String (217.0) -
configure のオプションを検査します。
...します。どちらでもな
い場合は default を返します。
これはデバッグ情報などのカスタム定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例...