| OLD | NEW |
| 1 #===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===# | 1 #===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===# |
| 2 # | 2 # |
| 3 # The LLVM Compiler Infrastructure | 3 # The LLVM Compiler Infrastructure |
| 4 # | 4 # |
| 5 # This file is distributed under the University of Illinois Open Source | 5 # This file is distributed under the University of Illinois Open Source |
| 6 # License. See LICENSE.TXT for details. | 6 # License. See LICENSE.TXT for details. |
| 7 # | 7 # |
| 8 #===------------------------------------------------------------------------===# | 8 #===------------------------------------------------------------------------===# |
| 9 # | 9 # |
| 10 # This file is included by Makefile.common. It defines paths and other | 10 # This file is included by Makefile.common. It defines paths and other |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 ZIP := @ZIP@ | 181 ZIP := @ZIP@ |
| 182 | 182 |
| 183 HAVE_PERL := @HAVE_PERL@ | 183 HAVE_PERL := @HAVE_PERL@ |
| 184 HAVE_PTHREAD := @HAVE_PTHREAD@ | 184 HAVE_PTHREAD := @HAVE_PTHREAD@ |
| 185 | 185 |
| 186 LIBS := @LIBS@ | 186 LIBS := @LIBS@ |
| 187 | 187 |
| 188 # Targets that we should build | 188 # Targets that we should build |
| 189 TARGETS_TO_BUILD=@TARGETS_TO_BUILD@ | 189 TARGETS_TO_BUILD=@TARGETS_TO_BUILD@ |
| 190 | 190 |
| 191 # Target OSes to include in the build. |
| 192 TARGET_OSES_TO_BUILD=@TARGET_OSES_TO_BUILD@ |
| 193 |
| 194 # Target Environments to include in the build. |
| 195 TARGET_ENVS_TO_BUILD=@TARGET_ENVS_TO_BUILD@ |
| 196 |
| 191 # Path to location for LLVM C/C++ front-end. You can modify this if you | 197 # Path to location for LLVM C/C++ front-end. You can modify this if you |
| 192 # want to override the value set by configure. | 198 # want to override the value set by configure. |
| 193 LLVMGCCDIR := @LLVMGCCDIR@ | 199 LLVMGCCDIR := @LLVMGCCDIR@ |
| 194 | 200 |
| 195 # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries: | 201 # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries: |
| 196 LLVMGCC := @LLVMGCC@ | 202 LLVMGCC := @LLVMGCC@ |
| 197 LLVMGXX := @LLVMGXX@ | 203 LLVMGXX := @LLVMGXX@ |
| 198 LLVMCC1 := @LLVMCC1@ | 204 LLVMCC1 := @LLVMCC1@ |
| 199 LLVMCC1PLUS := @LLVMCC1PLUS@ | 205 LLVMCC1PLUS := @LLVMCC1PLUS@ |
| 200 LLVMGCC_LANGS := @LLVMGCC_LANGS@ | 206 LLVMGCC_LANGS := @LLVMGCC_LANGS@ |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 # -Wno-missing-field-initializers | 359 # -Wno-missing-field-initializers |
| 354 NO_MISSING_FIELD_INITIALIZERS = @NO_MISSING_FIELD_INITIALIZERS@ | 360 NO_MISSING_FIELD_INITIALIZERS = @NO_MISSING_FIELD_INITIALIZERS@ |
| 355 # -Wno-variadic-macros | 361 # -Wno-variadic-macros |
| 356 NO_VARIADIC_MACROS = @NO_VARIADIC_MACROS@ | 362 NO_VARIADIC_MACROS = @NO_VARIADIC_MACROS@ |
| 357 | 363 |
| 358 # Was polly found in tools/polly? | 364 # Was polly found in tools/polly? |
| 359 LLVM_HAS_POLLY = @LLVM_HAS_POLLY@ | 365 LLVM_HAS_POLLY = @LLVM_HAS_POLLY@ |
| 360 # Flags supported by the linker. | 366 # Flags supported by the linker. |
| 361 # bfd ld / gold --version-script=file | 367 # bfd ld / gold --version-script=file |
| 362 HAVE_LINK_VERSION_SCRIPT = @HAVE_LINK_VERSION_SCRIPT@ | 368 HAVE_LINK_VERSION_SCRIPT = @HAVE_LINK_VERSION_SCRIPT@ |
| OLD | NEW |