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 220485 - 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 DUPLICATE of bug 220492
Alias: None
Product: cnd
Classification: Unclassified
Component: Project (show other bugs)
Version: 7.3
Hardware: All All
: P3 normal (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-20 17:53 UTC by szmitek
Modified: 2012-10-23 06:27 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter: 193820


Attachments
stacktrace (2.29 KB, text/plain)
2012-10-20 17:53 UTC, szmitek
Details
stacktrace (2.29 KB, text/plain)
2012-10-20 17:59 UTC, szmitek
Details
stacktrace (2.29 KB, text/plain)
2012-10-20 18:14 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 17:53:50 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: Compilation with own Makefile and g++. C++ source:
using namespace std;
int main(int argc, char** argv)
{
    double matrix[][];
    
    return 0;
}
Makefile: g++ SequentialVersion.cpp -o  SequentialMatrixInversion.out
Makefile (Make): gmake: *** Brak obiekt
Comment 1 szmitek 2012-10-20 17:53:54 UTC
Created attachment 126244 [details]
stacktrace
Comment 2 szmitek 2012-10-20 17:59:19 UTC
Created attachment 126245 [details]
stacktrace

Compiling c++ source:
using namespace std;
int main(int argc, char** argv)
{
    double matrix[][];
    
    return 0;
}
with own Makefile:
all:
    g++ SequentialVersion.cpp -o  SequentialMatrixInversion.out
Comment 3 szmitek 2012-10-20 18:14:20 UTC
Created attachment 126246 [details]
stacktrace

"Internal error occured. Please report a bug" after running c++ project.
Makefile:
all:
    g++ SequentialVersion.cpp -o  SequentialMatrixInversion.out
SequentialVersio.cpp:
using namespace std;
int main(int argc, char** argv)
{
    double matrix[][];
    
    return 0;
}
Comment 4 Alexander Simon 2012-10-23 06:27:21 UTC

*** This bug has been marked as a duplicate of bug 220492 ***