Closed
Description
With the following code
@CLibrary(value = "test1", requireStatic = true)
public class HelloWorld {
@CLibrary(value = "test")
public static void main(String[] args) {
}
@CEntryPoint(name="addJ")
static int addJ(IsolateThread thread, int a, int b) {
return a+b;
}
@CEntryPoint(name="subtractJ")
static int subtractJ( IsolateThread thread, int a, int b) { return a-b; }
}
The linker does try to link test, but not test1