Package com.android.builder.model
Interface NativeToolchain
public interface NativeToolchain
Toolchain for building a native library.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the full path of the C compiler.Returns the full path of the C++ compiler.getName()Returns the name of the toolchain.
-
Method Details
-
getName
Returns the name of the toolchain. e.g. "x86_64", "arm-linux-androideabi"- Returns:
- name of the toolchain.
-
getCCompilerExecutable
Returns the full path of the C compiler. May be null if project do not contain C sources.- Returns:
- the C compiler path.
-
getCppCompilerExecutable
Returns the full path of the C++ compiler. May be null if project do not contain C++ sources.- Returns:
- the C++ compiler path.
-