Problem with ACLiC

Dear Rooters

Using root 4.01/01 (23 July 2004) on MacOSX 1.3.1 I am no
longer able to compile my macros with ACLiC.
I get the following error messages:

root [0] .L macroCorrelation.C+
Info in TUnixSystem::ACLiC: creating shared library /Users/cs/ROOT/rootdata/cortest/./macroCorrelation_C.so
ld: /Users/cs/ROOT/root/lib/libGX11.so is input for the dynamic link editor, is not relocatable by the static link editor again
ld: /Users/cs/ROOT/root/lib/libGui.so is input for the dynamic link editor, is not relocatable by the static link editor again
ld: /Users/cs/ROOT/root/lib/libGX11TTF.so is input for the dynamic link editor, is not relocatable by the static link editor again
ld: /Users/cs/ROOT/root/lib/libMinuit.so is input for the dynamic link editor, is not relocatable by the static link editor again
ld: /Users/cs/ROOT/root/lib/libPostscript.so is input for the dynamic link editor, is not relocatable by the static link editor again
ld: /Users/cs/ROOT/root/lib/libHtml.so is input for the dynamic link editor, is not relocatable by the static link editor again
Error in : Compilation failed!
root [1]

Even the following simple macro results in the same error:

//---------begin macroTest.C-----------
#include “TFile.h”
#include “TTree.h”
#include “TString.h”
#include “TSystem.h”

#ifndef CINT
#include <Riostream.h>
#endif

Int_t Preprocess()
{
Int_t err = 0;
cout << “----------Preprocess()----------” << endl;
return err;
}
//---------end macroTest.C-----------

Could this be a Mac-specific problem?

Best regards
Christian

Hi,

This problem has been fixed last week in the CVS repository.

Cheers,
Philippe.

Thank you, now it works again. Christian