Let me know if it works for you. When I tried for the first time, it kept
crashing because of a use-of-unitialized-memory bug in Pythia itself. I
reported it upstream, but not sure if it ever got fixed. The patch I sent
in was
31,32c31,32
< Info() : LHEFversionSave(0), eCMSave(0.), lowPTmin(false),
a0MPISave(0.),
< abortPartonLevel(false), weightCKKWLSave(1.), weightFIRSTSave(0.) {
---
> Info() : LHEFversionSave(0), eventAttributes(nullptr), eCMSave(0.),
lowPTmin(false),
> a0MPISave(0.), abortPartonLevel(false), weightCKKWLSave(1.),
weightFIRSTSave(0.) {
so you can check yourself. I can also take a look in the morning.
On Mon, Aug 17, 2015 at 11:55 PM, Jan Strube <[email protected]> wrote:
> Works!
> Thank you. I appreciate the fast reply. Can't wait to play with Pythia.jl
> :-)
>
>
> On Monday, August 17, 2015 at 2:38:18 PM UTC-7, Keno Fischer wrote:
>>
>> I just fixed this on master. The reason this failed is that the
>> recommended configuration for Cxx.jl always pulls in latest LLVM master.
>> This causes problems sometimes when LLVM breaks the API, but it makes it
>> easier for me to make sure everyone has patches I commit upstream. Please
>> try again.
>>
>> On Mon, Aug 17, 2015 at 6:59 PM, Jan Strube <[email protected]> wrote:
>>
>>> I am trying to install CXX.jl following the instructions from the README.
>>> I'm on Mac OS X Yosemite and have installed Xcode.
>>> The deps compile OK.
>>>
>>> However, julia compilation seems to fail.
>>> ...
>>>
>>> CC src/codegen.o
>>>
>>> *codegen.cpp:5363:14: **error: **use of undeclared identifier
>>> 'createTypeBasedAliasAnalysisPass'; did you mean
>>> 'createBasicAliasAnalysisPass'?*
>>>
>>> FPM->add(createTypeBasedAliasAnalysisPass());
>>>
>>> * ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
>>>
>>> createBasicAliasAnalysisPass
>>>
>>> */Workdir/JULIA_GIT/usr/include/llvm/Analysis/BasicAliasAnalysis.h:191:16:
>>> **note: *'createBasicAliasAnalysisPass' declared here
>>>
>>> ImmutablePass *createBasicAliasAnalysisPass();
>>>
>>> * ^*
>>>
>>> 1 error generated.
>>>
>>> make[1]: *** [codegen.o] Error 1
>>>
>>> make: *** [julia-src-release] Error 2
>>>
>>>
>>> I couldn't find a bug posted about this, so I'm wondering if this is
>>> something I can fix on my end.
>>>
>>> Has anybody else encountered this?
>>>
>>>
>>>
>>