Interface NativeToolchain


public interface NativeToolchain
Toolchain for building a native library.
  • Method Details

    • getName

      @NonNull String getName()
      Returns the name of the toolchain. e.g. "x86_64", "arm-linux-androideabi"
      Returns:
      name of the toolchain.
    • getCCompilerExecutable

      @Nullable File 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

      @Nullable File getCppCompilerExecutable()
      Returns the full path of the C++ compiler. May be null if project do not contain C++ sources.
      Returns:
      the C++ compiler path.