mirror of https://github.com/aamine/cbc
11 lines
374 B
Java
11 lines
374 B
Java
package net.loveruby.cflat.sysdep;
|
|
import net.loveruby.cflat.exception.IPCException;
|
|
import java.util.List;
|
|
|
|
public interface Linker {
|
|
void generateExecutable(List<String> args, String destPath,
|
|
LinkerOptions opts) throws IPCException;
|
|
void generateSharedLibrary(List<String> args, String destPath,
|
|
LinkerOptions opts) throws IPCException;
|
|
}
|