This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 220492

Summary: NoSuchMethodError: org.netbeans.modules.nativeexecution.api.NativeProcessBuilder.setStatusEx(Z)Lorg/netbeans/modules/nativeexecution/api/NativeProcessBuilder;
Product: cnd Reporter: szmitek <szmitek>
Component: ProjectAssignee: Andrew Krasny <akrasny>
Status: RESOLVED FIXED    
Severity: normal CC: szmitek
Priority: P3    
Version: 7.3   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter: 193824
Attachments: stacktrace

Description szmitek 2012-10-20 20:11:59 UTC
Build: NetBeans IDE Dev (Build nbms-and-javadoc-9445-on-20120921)
VM: Java HotSpot(TM) 64-Bit Server VM, 17.1-b03, Java(TM) SE Runtime Environment, 1.6.0_22-b04
OS: Linux

User Comments:
szmitek: Compiling code remotely. SequentialVersion.cpp:
int main(int argc, char** argv)
{
    unsigned int n = 3;
    double matrix[n][n];
    int d = n - 1;
    for(int i = 0; i < n; i++)
    {
        for(int i = 0; i < n; i++)
        {
            double determinant[d][d];
        }
    }
    return 0;
}
Makefile:
all:
	g++ SequentialVersion.cpp -o  SequentialMatrixInversion.out
clean: 
	rm SequentialMatrixInversion.out




Stacktrace: 
java.lang.NoSuchMethodError: org.netbeans.modules.nativeexecution.api.NativeProcessBuilder.setStatusEx(Z)Lorg/netbeans/modules/nativeexecution/api/NativeProcessBuilder;
   at org.netbeans.modules.cnd.makeproject.api.DefaultProjectActionHandler._execute(DefaultProjectActionHandler.java:290)
   at org.netbeans.modules.cnd.makeproject.api.DefaultProjectActionHandler.access$100(DefaultProjectActionHandler.java:93)
   at org.netbeans.modules.cnd.makeproject.api.DefaultProjectActionHandler$2.run(DefaultProjectActionHandler.java:135)
   at org.netbeans.modules.cnd.makeproject.api.DefaultProjectActionHandler.execute(DefaultProjectActionHandler.java:151)
   at org.netbeans.modules.cnd.discovery.buildsupport.BuildProjectActionHandler.execute(BuildProjectActionHandler.java:210)
   at org.netbeans.modules.cnd.remote.sync.RemoteBuildProjectActionHandler.execute(RemoteBuildProjectActionHandler.java:195)
Comment 1 szmitek 2012-10-20 20:12:03 UTC
Created attachment 126248 [details]
stacktrace
Comment 2 Alexander Simon 2012-10-23 06:26:54 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/79d5091e8f01
Comment 3 Alexander Simon 2012-10-23 06:27:21 UTC
*** Bug 220485 has been marked as a duplicate of this bug. ***