HomeSort by relevance Sort by last modified time
    Searched refs:makeflags (Results 1 - 2 of 2) sorted by null

  /build/make/tools/makeparallel/
makeparallel.cpp 60 // Extract flags from MAKEFLAGS that need to be propagated to subproccess
64 const char* makeflags_env = getenv("MAKEFLAGS");
69 // The MAKEFLAGS format is pretty useless. The first argument might be empty
74 std::string makeflags = makeflags_env; local
76 // Split makeflags into individual args on spaces. Multiple spaces are
81 found = makeflags.find_first_of(" ", base);
82 args.push_back(makeflags.substr(base, found - base));
84 } while (found != makeflags.npos);
94 if (args[0].find('=') == makeflags.npos) {
309 std::vector<std::string> makeflags = ReadMakeflags() local
    [all...]
  /build/kati/
flags.cc 56 if (const char* makeflags = getenv("MAKEFLAGS")) {
57 for (StringPiece tok : WordScanner(makeflags)) {

Completed in 76 milliseconds