Displaying 3 results from an estimated 3 matches for "llvmgettargetnam".
Did you mean:
llvmgettargetname
2013 May 14
1
[LLVMdev] [llvm-c]
...icular
>> LLVMInitializeNativeTarget;
>>
>> // get first target
>> Target := LLVMGetFirstTarget;
>>
>> // loop until the target is NULL
>> while (Target <> nil) do
>> begin
>> // get target name & description
>> TargetName := LLVMGetTargetName(Target);
>> TargetDescription := LLVMGetTargetDescription(Target);
>>
>> // do something with these information
>>
>> Target := LLVMGetNextTarget(Target);
>> end;
>>
> I don't see any obvious problems here, though someone else might.
> What...
2013 May 11
2
[LLVMdev] [llvm-c]
...InitializeAllTargets;
LLVMInitializeAllTargetInfos;
// initialize native target in particular
LLVMInitializeNativeTarget;
// get first target
Target := LLVMGetFirstTarget;
// loop until the target is NULL
while (Target <> nil) do
begin
// get target name & description
TargetName := LLVMGetTargetName(Target);
TargetDescription := LLVMGetTargetDescription(Target);
// do something with these information
Target := LLVMGetNextTarget(Target);
end;
By debugging the LLVM library (a custom DLL, which works fine
otherwise), I can see that there is no information, but I'm not that
deep into...
2013 May 13
0
[LLVMdev] [llvm-c]
...t; // initialize native target in particular
> LLVMInitializeNativeTarget;
>
> // get first target
> Target := LLVMGetFirstTarget;
>
> // loop until the target is NULL
> while (Target <> nil) do
> begin
> // get target name & description
> TargetName := LLVMGetTargetName(Target);
> TargetDescription := LLVMGetTargetDescription(Target);
>
> // do something with these information
>
> Target := LLVMGetNextTarget(Target);
> end;
>
I don't see any obvious problems here, though someone else might.
What exactly is the problem you are se...