All my source code lives on a remote AIX box. I have created a UE project with entries for all my source files. I have created a script on the AIX box to fire off the make for my program. I have a project tool configured to use plink (from the putty tools) to run that script remotely and I capture all the output generated to an output window. All of that works great, and I get an output window containing, for example:
My problem comes when I double click the error. It wants to open up the file as if it lived in my local documents directory. What I would like it to do is to open the matching file name from my project, if there is a match, before it tries to find the file in some default location. Changing the default file location would not help for a couple of reasons. One, I don't think the default path can handle an FTP location and two, not all my source will be in a single directory. Common source lives in its own directory, project specific source in another, and so on.
Code: Select all
off
xlc_r -c -g -O3 -qstrict -q64 -qfullpath -qcpluscmt -qhalt=w -bnoquiet -I/opt/IBM/db2/V10.5/include -I/infosol/common/src -I/infosol/audit/src2 -DHAVE_GETLINE -DNO_MQ -DNO_MQTBL audit2.c
"audit2.c", line 4364.19: 1506-045 (S) Undeclared identifier ppszReqRsp.
"audit2.c", line 4365.17: 1506-045 (S) Undeclared identifier pszPost.
make: The error code from the last command is 1.
Stop.