1// Copyright 2019 The Chromium OS Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5package main 6 7func checkUnsupportedFlags(cmd *command) error { 8 for _, arg := range cmd.Args { 9 if arg == "-fstack-check" { 10 return newUserErrorf(`option %q is not supported; crbug/485492`, arg) 11 } 12 } 13 return nil 14} 15