Displaying 4 results from an estimated 4 matches for "aarch64gendagisel".
2013 May 17
2
[LLVMdev] AArch64 build error
...re related to AArch64 when building with cmake. The build is running with -j32 so it seems that there is some dependency issue that causes the build to fail when things build in a certain order.
Is anyone else seeing this problem?
paul
3008 make[2]: *** No rule to make target `lib/Target/AArch64/AArch64GenDAGISel.inc', needed by `lib/Target/AArch64/Utils/CMakeFiles/LLVMAArch64Utils.dir/AArch64BaseInfo.cpp.o'. Stop.
3009 make[2]: Leaving directory `/home/pulseagent/.pulse2-agent/data/agents/109155/recipes/791203/base/build-cmake'
3010 make[1]: *** [lib/Target/AArch64/Utils/CMakeFiles/LLVMAArch64U...
2013 May 17
0
[LLVMdev] AArch64 build error
...;random" build failure related to AArch64 when building with cmake.
> The build is running with -j32 so it seems that there is some dependency issue
> that causes the build to fail when things build in a certain order.
> 3008 make[2]: *** No rule to make target `lib/Target/AArch64/AArch64GenDAGISel.inc', needed by
Hmm. That file's generated by TableGen (via some kind of custom make
magic) and included by the "regular" sources, so it's entirely
possible there's a race hiding. I always thought all TableGen commands
were run before the main sources got compiled, but at...
2013 Feb 06
0
[LLVMdev] Sporadic build failure doing 'make -j' from CMake-generated Unix Makefiles in AArch64 backend
...t;-stdlib=libc++" \
-DCMAKE_SHARED_LINKER_FLAGS="-stdlib=libc++" \
-DCMAKE_INSTALL_PREFIX="$WORKSPACE/llvm/install" \
.. &&
make -j &&
make install)
# ...normal build output...
make[2]: *** No rule to make target
`lib/Target/AArch64/AArch64GenDAGISel.inc', needed by
`lib/Target/AArch64/Utils/CMakeFiles/LLVMAArch64Utils.dir/AArch64BaseInfo.cpp.o'.
Stop.
make[1]: *** [lib/Target/AArch64/Utils/CMakeFiles/LLVMAArch64Utils.dir/all]
Error 2
make[1]: *** Waiting for unfinished jobs....
It doesn't happen consistently, so maybe there's...
2013 May 17
1
[LLVMdev] AArch64 build error
...Arch64 when building
>>with cmake.
>> The build is running with -j32 so it seems that there is some
>>dependency issue
>> that causes the build to fail when things build in a certain order.
>
>> 3008 make[2]: *** No rule to make target
>>`lib/Target/AArch64/AArch64GenDAGISel.inc', needed by
>
>Hmm. That file's generated by TableGen (via some kind of custom make
>magic) and included by the "regular" sources, so it's entirely
>possible there's a race hiding. I always thought all TableGen commands
>were run before the main sources...