Movatterモバイル変換


[0]ホーム

URL:


D Logo
Menu
Search

Library Reference

version 2.112.0

overview

Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinga local clone.

dmd.root.response

Parse command line arguments from response files.
This file is not shared with other compilers which use the DMD front-end.
Authors:
Walter Bright
License:
Boost License 1.0

Sourceroot/response.d

Documentationhttps://dlang.org/phobos/dmd_root_response.html

Coveragehttps://codecov.io/gh/dlang/dmd/src/master/compiler/src/dmd/root/response.d

aliasresponseExpand = responseExpandFrom!(lookupInEnvironment).responseExpandFrom;
nothrow const(char)*responseExpandFrom(alias lookup)(ref Stringsargs);
Expand any response files in command line. Response files are arguments that look like: @NAME The names are resolved by calling the 'lookup' function passed as a template parameter. That function is expected to first check the environment and then the file system. Arguments are separated by spaces, tabs, or newlines. These can be imbedded within arguments by enclosing the argument in "". Backslashes can be used to escape a ". A line comment can be started with #. Recursively expands nested response files.
To use, put the arguments in a Strings object and call this on it.
Digital Mars's MAKE program can be notified that a program can accept long command lines via environment variables by preceding the rule line for the program with a *.
Parameters:
lookupalias to a function that is called to look up response file arguments in the environment. It is expected to accept a null- terminated string and return a mutable char[] that ends with a null-terminator or null if the response file could not be resolved.
Stringsargsarray containing arguments as null-terminated strings
Returns:
null on success, or the first response file that could not be found
pure nothrow boolinsertArgumentsFromResponse(char[]buffer, ref Stringsargs, ref size_targIndex);
Take the contents of a response-file 'buffer', parse it and put the resulting arguments in 'args' at 'argIndex'. 'argIndex' will be updated to point just after the inserted arguments. The logic of this should match that in setargv()
Parameters:
char[]buffermutable string containing the response file
Stringsargslist of arguments
size_targIndexposition in 'args' where response arguments are inserted
Returns:
true if another response argument was found
Copyright © 1999-2026 by theD Language Foundation | Page generated byDdoc on Fri Feb 20 17:56:13 2026

[8]ページ先頭

©2009-2026 Movatter.jp