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 - NoSuchMethodError: org.netbeans.modules.nativeexecution.api.NativeProcessBuilder.setStatusEx(Z)Lorg/netbeans/modules/nativeexecution/api/NativeProcessBuilder;
Summary: NoSuchMethodError: org.netbeans.modules.nativeexecution.api.NativeProcessBuil...
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Project (show other bugs)
Version: 7.3
Hardware: All All
: P3 normal (vote)
Assignee: Andrew Krasny
URL:
Keywords:
: 220485 (view as bug list)
Depends on:
Blocks:
 
Reported: 2012-10-20 20:11 UTC by szmitek
Modified: 2012-10-23 06:27 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter: 193824


Attachments
stacktrace (2.62 KB, text/plain)
2012-10-20 20:12 UTC, szmitek
Details

Note You need to log in before you can comment on or make changes to this bug.
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. ***