diff options
| author | Tom Stellard <thomas.stellard@amd.com> | 2012-07-16 14:17:16 +0000 | 
|---|---|---|
| committer | Tom Stellard <thomas.stellard@amd.com> | 2012-07-16 14:17:16 +0000 | 
| commit | 812e652b43e4bdcaf965e306397a42381c4ac12f (patch) | |
| tree | 5920354b3630f66209a016419794fdd9de0793c2 | |
| parent | ee1812b94f5be56996dbbb39b0af09574d5e2ed7 (diff) | |
| download | bcm5719-llvm-812e652b43e4bdcaf965e306397a42381c4ac12f.tar.gz bcm5719-llvm-812e652b43e4bdcaf965e306397a42381c4ac12f.zip  | |
Build script changes for R600/SI Codegen v6
llvm-svn: 160272
| -rw-r--r-- | llvm/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | llvm/autoconf/configure.ac | 5 | ||||
| -rwxr-xr-x | llvm/configure | 7 | ||||
| -rw-r--r-- | llvm/lib/Target/LLVMBuild.txt | 2 | ||||
| -rw-r--r-- | llvm/projects/sample/autoconf/configure.ac | 5 | ||||
| -rwxr-xr-x | llvm/projects/sample/configure | 8 | 
6 files changed, 17 insertions, 11 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index bb64db91bc6..f03cfbca968 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -74,6 +74,7 @@ set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)  set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )  set(LLVM_ALL_TARGETS +  AMDGPU    ARM    CellSPU    CppBackend diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index 427c5413c63..d00a556a057 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/autoconf/configure.ac @@ -652,13 +652,13 @@ TARGETS_TO_BUILD=""  AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],      [Build specific host targets: all or target1,target2,... Valid targets are:       host, x86, x86_64, sparc, powerpc, arm, mips, spu, hexagon, -     xcore, msp430, nvptx, and cpp (default=all)]),, +     xcore, msp430, nvptx, r600, and cpp (default=all)]),,      enableval=all)  if test "$enableval" = host-only ; then    enableval=host  fi  case "$enableval" in -  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 CppBackend MBlaze NVPTX Hexagon" ;; +  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 CppBackend MBlaze NVPTX Hexagon AMDGPU" ;;    *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do        case "$a_target" in          x86)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; @@ -675,6 +675,7 @@ case "$enableval" in          hexagon)  TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;          mblaze)   TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;          nvptx)    TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;; +	r600)     TARGETS_TO_BUILD="AMDGPU $TARGETS_TO_BUILD" ;;          host) case "$llvm_cv_target_arch" in              x86)         TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;              x86_64)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; diff --git a/llvm/configure b/llvm/configure index 72145bce929..82dceb4e7e6 100755 --- a/llvm/configure +++ b/llvm/configure @@ -1417,7 +1417,7 @@ Optional Features:    --enable-targets        Build specific host targets: all or                            target1,target2,... Valid targets are: host, x86,                            x86_64, sparc, powerpc, arm, mips, spu, hexagon, -                          xcore, msp430, nvptx, and cpp (default=all) +                          xcore, msp430, nvptx, r600, and cpp (default=all)    --enable-bindings       Build specific language bindings:                            all,auto,none,{binding-name} (default=auto)    --enable-libffi         Check for the presence of libffi (default is NO) @@ -5329,7 +5329,7 @@ if test "$enableval" = host-only ; then    enableval=host  fi  case "$enableval" in -  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 CppBackend MBlaze NVPTX Hexagon" ;; +  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 CppBackend MBlaze NVPTX Hexagon AMDGPU" ;;    *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do        case "$a_target" in          x86)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; @@ -5346,6 +5346,7 @@ case "$enableval" in          hexagon)  TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;          mblaze)   TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;          nvptx)    TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;; +	r600)     TARGETS_TO_BUILD="AMDGPU $TARGETS_TO_BUILD" ;;          host) case "$llvm_cv_target_arch" in              x86)         TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;              x86_64)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; @@ -10210,7 +10211,7 @@ else    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_status=$lt_dlunknown    cat > conftest.$ac_ext <<EOF -#line 10213 "configure" +#line 10214 "configure"  #include "confdefs.h"  #if HAVE_DLFCN_H diff --git a/llvm/lib/Target/LLVMBuild.txt b/llvm/lib/Target/LLVMBuild.txt index 8995080974c..97c8796e3c4 100644 --- a/llvm/lib/Target/LLVMBuild.txt +++ b/llvm/lib/Target/LLVMBuild.txt @@ -16,7 +16,7 @@  ;===------------------------------------------------------------------------===;  [common] -subdirectories = ARM CellSPU CppBackend Hexagon MBlaze MSP430 NVPTX Mips PowerPC Sparc X86 XCore +subdirectories = AMDGPU ARM CellSPU CppBackend Hexagon MBlaze MSP430 NVPTX Mips PowerPC Sparc X86 XCore  ; This is a special group whose required libraries are extended (by llvm-build)  ; with the best execution engine (the native JIT, if available, or the diff --git a/llvm/projects/sample/autoconf/configure.ac b/llvm/projects/sample/autoconf/configure.ac index bd0b16a4a69..314f1904838 100644 --- a/llvm/projects/sample/autoconf/configure.ac +++ b/llvm/projects/sample/autoconf/configure.ac @@ -568,13 +568,13 @@ TARGETS_TO_BUILD=""  AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],      [Build specific host targets: all or target1,target2,... Valid targets are:       host, x86, x86_64, sparc, powerpc, arm, mips, spu, hexagon, -     xcore, msp430, nvptx, cbe, and cpp (default=all)]),, +     xcore, msp430, nvptx, cbe, r600, and cpp (default=all)]),,      enableval=all)  if test "$enableval" = host-only ; then    enableval=host  fi  case "$enableval" in -  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 Hexagon CppBackend MBlaze NVPTX" ;; +  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 Hexagon CppBackend MBlaze NVPTX AMDGPU" ;;    *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do        case "$a_target" in          x86)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; @@ -590,6 +590,7 @@ case "$enableval" in          cpp)      TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;          mblaze)   TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;          nvptx)    TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;; +        r600)     TARGETS_TO_BUILD="AMDGPU $TARGETS_TO_BUILD" ;;          host) case "$llvm_cv_target_arch" in              x86)         TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;              x86_64)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; diff --git a/llvm/projects/sample/configure b/llvm/projects/sample/configure index df08c7c4e04..7bd545e8100 100755 --- a/llvm/projects/sample/configure +++ b/llvm/projects/sample/configure @@ -1402,7 +1402,8 @@ Optional Features:    --enable-targets        Build specific host targets: all or                            target1,target2,... Valid targets are: host, x86,                            x86_64, sparc, powerpc, arm, mips, spu, hexagon, -                          xcore, msp430, nvptx, cbe, and cpp (default=all) +                          xcore, msp430, nvptx, cbe, r600, and cpp +                          (default=all)    --enable-bindings       Build specific language bindings:                            all,auto,none,{binding-name} (default=auto)    --enable-libffi         Check for the presence of libffi (default is NO) @@ -5255,7 +5256,7 @@ if test "$enableval" = host-only ; then    enableval=host  fi  case "$enableval" in -  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 Hexagon CppBackend MBlaze NVPTX" ;; +  all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 Hexagon CppBackend MBlaze NVPTX AMDGPU" ;;    *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do        case "$a_target" in          x86)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; @@ -5271,6 +5272,7 @@ case "$enableval" in          cpp)      TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;          mblaze)   TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;          nvptx)    TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;; +        r600)     TARGETS_TO_BUILD="AMDGPU $TARGETS_TO_BUILD" ;;          host) case "$llvm_cv_target_arch" in              x86)         TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;              x86_64)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; @@ -10308,7 +10310,7 @@ else    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_status=$lt_dlunknown    cat > conftest.$ac_ext <<EOF -#line 10311 "configure" +#line 10312 "configure"  #include "confdefs.h"  #if HAVE_DLFCN_H  | 

