Displaying 3 results from an estimated 3 matches for "schroetter".
2013 Oct 05
0
[LLVMdev] How to supply a non-default constructor to RegisterPass ?
On Sep 30, 2013, at 10:11 PM, Dirk Schroetter <dschroetter at googlemail.com> wrote:
> Folks,
>
> I did read the documentation but I am at a loss still.
>
> I do have the following:
>
> Pass *createFooPass (char *foo1) {
> return new FooPass (foo1);
> }
>
> static RegisterPass<FooPass> X("...
2013 Oct 01
2
[LLVMdev] How to supply a non-default constructor to RegisterPass ?
Folks,
I did read the documentation but I am at a loss still.
I do have the following:
Pass *createFooPass (char *foo1) {
return new FooPass (foo1);
}
static RegisterPass<FooPass> X("foo-pass", "foo", false, true);
Where exactly do I supply the non-default crore in this example ?
Thanks
/Dirk
2017 Nov 05
2
Two-stage build w/ ninja - Tests still use stage1 compiler / linker ?
Folks,
I am using a two-stagesimple build like this one:
make -G Ninja -DCLANG_ENABLE_BOOTSTRAP=ON ../src
ninja stage2-check-all
Stage 1 gets built, and when looking at rules.ninja in the stage2-bins I see:
rule CXX_COMPILER_AnalysisTests
depfile = $DEP_FILE
deps = gcc
command = <stage1 build dir>./bin/clang++ $DEFINES $INCLUDES $FLAGS -MMD -MT $out -MF $DEP_FILE -o $out -c $in