blob: fca34b13b011fc720d1180524d5df4139bf5a01c [file] [log] [blame]
/*
* Copyright 2014-present Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.facebook.buck.cxx;
import com.facebook.buck.model.Flavor;
import com.facebook.buck.util.immutables.BuckStyleImmutable;
import com.google.common.base.Optional;
import com.google.common.collect.Multimap;
import org.immutables.value.Value;
import java.nio.file.Path;
import java.util.List;
/**
* Interface describing a C/C++ toolchain and platform to build for.
*/
@Value.Immutable
@BuckStyleImmutable
public interface CxxPlatform {
Flavor getFlavor();
Tool getAs();
List<String> getAsflags();
Tool getAspp();
List<String> getAsppflags();
Tool getCc();
List<String> getCflags();
Tool getCxx();
List<String> getCxxflags();
Tool getCpp();
List<String> getCppflags();
Tool getCxxpp();
List<String> getCxxppflags();
Tool getCxxld();
List<String> getCxxldflags();
Linker getLd();
List<String> getLdflags();
Multimap<Linker.LinkableDepType, String> getRuntimeLdflags();
Tool getAr();
List<String> getArflags();
Optional<Path> getLex();
List<String> getLexFlags();
Optional<Path> getYacc();
List<String> getYaccFlags();
String getSharedLibraryExtension();
Optional<DebugPathSanitizer> getDebugPathSanitizer();
}