Displaying 9 results from an estimated 9 matches for "llvm_cv_target_arch".
2004 Dec 23
0
[LLVMdev] small patch for llvm configure.ac
...SUBST usage and adds AMD64 detection. Please review.
>
> ~Markus
> --- autoconf/configure.ac 22 Dec 2004 05:56:56 -0000 1.147
> +++ autoconf/configure.ac 23 Dec 2004 06:06:04 -0000
> @@ -139,7 +139,8 @@
> dnl the OS.
> AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
> [case $target in
> - i*86-*) llvm_cv_target_arch="x86" ;;
> + amd64-* | x86_64-*) llvm_cv_target_arch="amd64" ;;
> + i?86-*) llvm_cv_target_arch="x86" ;;
This change looks fine. I'll commit this part.
> sparc*-*) llvm_cv_tar...
2004 Dec 23
0
[LLVMdev] small patch for llvm configure.ac
.../var/cvs/llvm/llvm/autoconf/configure.ac,v
> retrieving revision 1.148
> diff -u -r1.148 configure.ac
> --- configure.ac 23 Dec 2004 06:22:33 -0000 1.148
> +++ configure.ac 23 Dec 2004 06:32:35 -0000
> @@ -140,7 +140,7 @@
> AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
> [case $target in
> i?86-*) llvm_cv_target_arch="x86" ;;
> - amd64-*) llvm_cv_target_arch="amd64" ;;
> + amd64-* | x86_64-*) llvm_cv_target_arch="AMD64" ;;
> sparc*-*) llvm_cv_target_arch="Sparc" ;;
> powerpc*-*)...
2013 Feb 01
3
[LLVMdev] configure with new target
...king whether byte ordering is bigendian... no
configure: error: Unrecognized target coldfire
configure: error: ../../../llvm/projects/sample/configure failed for
projects/sample
I've added ColdFire to :
1) TARGETS_TO_BUILD variable
2) 'case "$a_target" in'
3) 'case "$llvm_cv_target_arch" in'
4) 'case $target in'
5) to 'case $host in'
but it looks like more changes are needed.
Could someone, please, advise me?
--
Regards,
Vadim.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev...
2013 Feb 01
0
[LLVMdev] configure with new target
..... no
> configure: error: Unrecognized target coldfire
> configure: error: ../../../llvm/projects/sample/configure failed for
> projects/sample
>
> I've added ColdFire to :
> 1) TARGETS_TO_BUILD variable
> 2) 'case "$a_target" in'
> 3) 'case "$llvm_cv_target_arch" in'
> 4) 'case $target in'
> 5) to 'case $host in'
>
> but it looks like more changes are needed.
>
> Could someone, please, advise me?
>
Did you also update the configure.ac script in projects/sample/autoconf ?
-Tom
2013 Feb 01
1
[LLVMdev] configure with new target
...: Unrecognized target coldfire
>> configure: error: ../../../llvm/projects/sample/configure failed for
>> projects/sample
>>
>> I've added ColdFire to :
>> 1) TARGETS_TO_BUILD variable
>> 2) 'case "$a_target" in'
>> 3) 'case "$llvm_cv_target_arch" in'
>> 4) 'case $target in'
>> 5) to 'case $host in'
>>
>> but it looks like more changes are needed.
>>
>> Could someone, please, advise me?
>>
>
> Did you also update the configure.ac script in projects/sample/autoconf ?...
2007 Dec 12
0
[LLVMdev] RFC: configure.ac
...don't have an
autoconf that won't mess things up, though.
Comments?
-bw
Index: autoconf/configure.ac
===================================================================
--- autoconf/configure.ac (revision 44957)
+++ autoconf/configure.ac (working copy)
@@ -227,9 +227,9 @@
AC_SUBST(ARCH,$llvm_cv_target_arch)
dnl Check for the endianness of the target
-AC_C_BIGENDIAN([AC_SUBST([ENDIAN],[big]),
+AC_C_BIGENDIAN([AC_SUBST(ENDIAN,[big]),
AC_DEFINE([MSB_FIRST], [1], [Define if this target is
big endian])],
- [AC_SUBST([ENDIAN],[little]),
+ [AC_SUBST(ENDIAN,[lit...
2009 Jun 17
1
[LLVMdev] Configure problem of llvm2.5 in Mac OS X 10.4.11
...s_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_host=powerpc-apple-darwin8.11.0
ac_cv_prog_ac_ct_CC=gcc
ac_cv_target=powerpc-apple-darwin8.11.0
llvm_cv_link_all_option=-Wl,-all_load
llvm_cv_no_link_all_option=-Wl,-noall_load
llvm_cv_os_type=Darwin
llvm_cv_platform_type=Unix
llvm_cv_target_arch=PowerPC
## ----------------- ##
## Output variables. ##
## ----------------- ##
ALLOCA=''
ALL_BINDINGS=''
AR=''
ARCH='PowerPC'
BINDINGS_TO_BUILD=''
BINPWD=''
BISON=''
BUILD_CC=''
BUILD_CXX=''
BUILD_EXEEXT=''
BZIP2=...
2009 Jun 18
0
[LLVMdev] Configure problem of llvm2.5 in Mac OS X 10.4.11
...v_env_target_alias_value=
> ac_cv_host=powerpc-apple-darwin8.11.0
> ac_cv_prog_ac_ct_CC =gcc
> ac_cv_target=powerpc-apple-darwin8.11.0
> llvm_cv_link_all_option=-Wl,-all_load
> llvm_cv_no_link_all_option=-Wl,-noall_load
> llvm_cv_os_type=Darwin
> llvm_cv_platform_type=Unix
> llvm_cv_target_arch=PowerPC
>
> ## ----------------- ##
> ## Output variables. ##
> ## ----------------- ##
>
> ALLOCA=''
> ALL_BINDINGS=''
> AR=''
> ARCH='PowerPC'
> BINDINGS_TO_BUILD=''
> BINPWD=''
> BISON=''
> BUILD_CC=...
2012 Oct 12
3
[LLVMdev] Newbie question for registering new target with LLVM
...--enable-targets=Rx,arm --prefix=/home/sandeep/LLVM/prefix/
--enable-languages=c,c++
make
make install
File(s) that I have modified to register new target with LLVM infrastructure:
=============================================================================
1) llvm/configure
1.1) Rx-*) llvm_cv_target_arch="RX" ;;
1.2) Rx) TARGET_HAS_JIT=0
1.3) case "$enableval" in
all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU XCore
MSP430 SystemZ Blackfin CBackend CppBackend MBlaze PTX Rx" ;;
1.4) Rx) TARGETS_TO_BUILD="Rx $TARGET...