nitc :: ExternFile
nitc :: ExternFile :: _filename
Filename relative to the nit-compile foldernitc :: ExternFile :: _pkgconfigs
Additional libraries needed for the compilationnitc :: ExternFile :: add_to_jar
Isself
a Java file to include in the JAR archive?
nitc :: ExternFile :: compile
Compile this source filenitc :: ExternFile :: compiles_to_o_file
nitc :: ExternFile :: defaultinit
nitc :: ExternFile :: filename=
Filename relative to the nit-compile foldernitc :: ExternFile :: makefile_rule_content
The content of the rule in the makenitc :: ExternFile :: makefile_rule_name
The name of the target in the Makefilenitc :: ExternFile :: pkgconfigs
Additional libraries needed for the compilationnitc :: ExternFile :: pkgconfigs=
Additional libraries needed for the compilationnitc $ ExternFile :: SELF
Type of this instance, automatically specialized in every classnitc :: ExternFile :: _filename
Filename relative to the nit-compile foldernitc :: ExternFile :: _pkgconfigs
Additional libraries needed for the compilationnitc :: ExternFile :: add_to_jar
Isself
a Java file to include in the JAR archive?
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: ExternFile :: compile
Compile this source filenitc :: ExternFile :: compiles_to_o_file
nitc :: ExternFile :: defaultinit
core :: Object :: defaultinit
nitc :: ExternFile :: filename=
Filename relative to the nit-compile foldercore :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
nitc :: ExternFile :: makefile_rule_content
The content of the rule in the makenitc :: ExternFile :: makefile_rule_name
The name of the target in the Makefilecore :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).nitc :: ExternFile :: pkgconfigs
Additional libraries needed for the compilationnitc :: ExternFile :: pkgconfigs=
Additional libraries needed for the compilation
# An extern file to compile
class ExternFile
# Filename relative to the nit-compile folder
var filename: String
# The name of the target in the Makefile
# Usually the produced .o file
fun makefile_rule_name: String is abstract
# The content of the rule in the make
# Usually the one-line shell command after the tabulation
fun makefile_rule_content: String is abstract
fun compiles_to_o_file: Bool do return false
# Is `self` a Java file to include in the JAR archive?
fun add_to_jar: Bool do return false
# Additional libraries needed for the compilation
# Will be used with pkg-config
var pkgconfigs = new Array[String]
end
src/c_tools.nit:106,1--128,3
redef class ExternFile
# Compile this source file
private fun compile(v: NaiveInterpreter, mmodule: MModule,
object_files: Array[String], pkg_cflags: String): Bool is abstract
end
src/interpreter/dynamic_loading_ffi/on_demand_compiler.nit:394,1--398,3