Category Archives: Perl

Software Development

ProjectAssist Installation Errors (part 2)

Having determined the cause of the maven issues, I moved on and cleaned up my system and restarted the install.

I then got perl errors, which the log listed as:

(13:22:49:671) Installing C:\borland\projectassist\Perl\site\lib\Net\LDAP\Extension\WhoAmI.pm
(13:22:49:671) Perl install: processing INSTALL component AppConfig...
(13:22:53:609) Can't call method "ok" on an undefined value at c:/Borland/ProjectAssist/Perl/site/lib/PPM/UI.pm line 881, line 21.
(13:22:53:609) Perl install: ppm command did not succed (exitCode 1):
c:\borland\projectassist\Perl\bin\perl -x -S PPM install c:\borland\projectassist\bugzilla_perl_modules\AppConfig.ppd
(13:22:53:609) Perl install: processing INSTALL component Template-Toolkit...
(13:22:57:218) Can't call method "ok" on an undefined value at c:/Borland/ProjectAssist/Perl/site/lib/PPM/UI.pm line 881, line 17.
(13:22:57:218) Perl install: ppm command did not succed (exitCode 1):
c:\borland\projectassist\Perl\bin\perl -x -S PPM install c:\borland\projectassist\bugzilla_perl_modules\Template-Toolkit.ppd

Continue reading

Leave a comment

Filed under CodeGear, Eclipse, Perl, ProjectAssist

C Programming in Eclipse

In my day to day job, I mainly use java, primarily for the development of graphical interfaces to communicate with custom built hardware running embedded microprocessors (written in assembly and c). In addition though, I also write c and c++ for backend code that needs to run really fast, or needs to do stuff that java has a hard time with.

For example, I am working on a project that uses JNI to integrate a java GUI to a c++ dll, which does some complex data processing for GPS location triangulation. This code is already working in c++ and I don’t want to have top reingineer it in java, as it involves some very ugly math.

I have recently made a switch to eclipse(jbuilder) for java development. Continue reading

1 Comment

Filed under C++, Eclipse, IDEs, Java, Perl, PHP, Programming Languages