# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/.
# This modules provides functionality for dealing with code completion.
from mach.decorators import Command, CommandArgument
from mozbuild.shellutil import quote as shell_quote from mozbuild.shellutil import split as shell_split
# Instropection commands.
@Command( "compileflags",
category="devenv",
description="Display the compilation flags for a given source file",
)
@CommandArgument( "what", default=None, help="Source file to display compilation flags for"
) def compileflags(command_context, what): from mozbuild.compilation import util from mozbuild.util import resolve_target_to_make
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.