Displaying 4 results from an estimated 4 matches for "compiler_rt_test_target_arch".
2014 Dec 01
3
[LLVMdev] [Compiler-rt] -march=aarch64 flag in gcc/clang
Hi,
I wonder if this is a valid flag in either clang/gcc.
The flag in question is "-march=aarch64". I verified with latest tip and neither clang nor gcc fail to recognize this flag.
This piece of code is in cmake/config-ix.cmake in compiler-rt repo.
+ elseif("${COMPILER_RT_TEST_TARGET_ARCH}" MATCHES "aarch64")
+ test_target_arch(aarch64 "-march=aarch64")
Anyone have any thoughts or any suggestions ? Currently this is blocking my compiler-rt build for aarch64-linux.
--Sumanth G
-------------- next part --------------
An HTML attachment was scrubbed...
URL...
2014 Dec 16
2
[LLVMdev] [Compiler-rt] -march=aarch64 flag in gcc/clang
The point here is, if you are not building for Android.
You will hit this patch with cmake configuration -DCOMPILER_RT_TEST_TRIPLE=aarch64-linux-gnu
+ elseif("${COMPILER_RT_TEST_TARGET_ARCH}" MATCHES "aarch64")
+ test_target_arch(aarch64 "-march=aarch64")
I don't see "-march=aarch64" is a valid flag on either LLVM or GCC.
Should we replace this with a flag which is valid for only aarch64 and works for both LLVM and GCC ?
If the compiler-rt b...
2014 Dec 10
2
[LLVMdev] [Compiler-rt] -march=aarch64 flag in gcc/clang
...ang/gcc.
>>
>> The flag in question is “-march=aarch64”. I verified with latest tip and
>> neither clang nor gcc fail to recognize this flag.
>>
>> This piece of code is in cmake/config-ix.cmake in compiler-rt repo.
>>
>>
>>
>> + elseif("${COMPILER_RT_TEST_TARGET_ARCH}" MATCHES "aarch64")
>>
>> + test_target_arch(aarch64 "-march=aarch64")
>>
>>
>>
>> Anyone have any thoughts or any suggestions ? Currently this is blocking my
>> compiler-rt build for aarch64-linux.
>>
>>
>>
&g...
2014 Dec 16
2
[LLVMdev] [Compiler-rt] -march=aarch64 flag in gcc/clang
On 16 December 2014 at 21:12, Gundapaneni, Sumanth <sgundapa at quicinc.com> wrote:
> The point here is, if you are not building for Android.
> You will hit this patch with cmake configuration -DCOMPILER_RT_TEST_TRIPLE=aarch64-linux-gnu
>
> + elseif("${COMPILER_RT_TEST_TARGET_ARCH}" MATCHES "aarch64")
> + test_target_arch(aarch64 "-march=aarch64")
>
> I don't see "-march=aarch64" is a valid flag on either LLVM or GCC.
> Should we replace this with a flag which is valid for only aarch64 and works for both LLVM and GCC ?
I...