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 270706

Summary: In Full Remote mode "C/C++/Fortran Project with Existing Sources" wizard doesn't build project too often
Product: cnd Reporter: soldatov <soldatov>
Component: RemoteAssignee: Alexander Simon <alexvsimon>
Status: NEW ---    
Severity: normal    
Priority: P2    
Version: 8.2   
Hardware: PC   
OS: Solaris   
Issue Type: DEFECT Exception Reporter:

Description soldatov 2017-05-22 10:07:52 UTC
I see this bug in Desktop Distribution on Windows

Makefile:
=====================================
test: test.cpp
	g++ -g -o test test.cpp

clean:
	rm -f test.exe test
=====================================

test.cpp
=====================================
int main() {
  return 0;
}
=====================================

Scenario:
- Create /net/host/..../TestProject with Makefile a test.cpp
- Create /net/host/..../TestProject2 with Makefile a test.cpp
- Add some Sparc remote host
- Push File|Create Remote C/C++ Project|<some host> menu item
- Select "C/C++/Fortran|C/C++/Fortran Project with Existing Sources"
- Press Next button
- Specify remote folder with existing sources (/net/host/..../TestProject)
- Press Finish button
==> IDE builds project
- Push File|Create Remote C/C++ Project|<some host> menu item
- Select "C/C++/Fortran|C/C++/Fortran Project with Existing Sources"
- Press Next button
- Specify remote folder with existing sources (/net/host/..../TestProject2)
- Press Finish button
==>
1) IDE doesn't build new project
2) In Projects tab I see "Important Files|Makefile" and "Important Files|launcher.properties" node only
3) Checkbox Code Assistance|C/C++ Code Assistance... is switched off

Workaround: build project and switch on "Code Assistance|C/C++ Code Assistance..." checkbox