Changes between Version 111 and Version 112 of ProblemHotlist
- Timestamp:
- May 30, 2014, 12:07:39 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProblemHotlist
v111 v112 108 108 sudo port install foo configure.compiler=gcc-4.2 109 109 }}} 110 111 == Can't find Tcl configuration definitions == #tclConfig112 113 When installing MacPorts from source on 10.9, you may encounter the error114 115 {{{116 checking for Tcl configuration... configure: error: Can't find Tcl configuration definitions117 }}}118 119 The file `tclConfig.sh` was included in the Mac OS X base in earlier releases, but was moved to the Xcode Command Line Tools in 10.9; these are normally installed the first time you run `clang` after accepting the Xcode license, but running the `configure` script doesn't run `clang` until after the Tcl check. The easiest way to force installation is to run:120 121 {{{122 xcode-select --install123 }}}124 125 after installing Xcode 5.0.1 or later.126 110 127 111 == install_name_tool or strip reports "malformed object (unknown load command)" == #malformed-object … … 259 243 sudo ./repairfilemap.tcl 260 244 }}} 245 246 = Retired Problems = 247 248 The following problems are now solved, no longer apply to current MacPorts or should no longer be happening due to other circumstances. They are kept here for future reference and to avoid breaking existing links. 249 250 == Can't find Tcl configuration definitions == #tclConfig 251 252 When installing MacPorts from source on 10.9, you may encounter the error 253 254 {{{ 255 checking for Tcl configuration... configure: error: Can't find Tcl configuration definitions 256 }}} 257 258 The file `tclConfig.sh` was included in the Mac OS X base in earlier releases, but was moved to the Xcode Command Line Tools in 10.9; these are normally installed the first time you run `clang` after accepting the Xcode license, but running the `configure` script doesn't run `clang` until after the Tcl check. The easiest way to force installation is to run: 259 260 {{{ 261 xcode-select --install 262 }}} 263 264 after installing Xcode 5.0.1 or later. 265 266 '''Note:''' This can no longer occur starting with MacPorts 2.3.0, because it ships its own copy of Tcl.