Ticket #11881: xcode-group-universal.patch
File xcode-group-universal.patch, 1.2 KB (added by meissnem@…, 18 years ago) |
---|
-
xcode-1.0.tcl
256 256 set xcode_configuration_arg [xcode::get_configuration_arg ${xcode.configuration}] 257 257 set xcode_project_arg [xcode::get_project_arg ${xcode.project}] 258 258 set xcode_build_args "OBJROOT=build/ SYMROOT=build/" 259 if {[variant_isset universal]} { 260 set xcode_build_args "${xcode_build_args} SDKROOT=/Developer/SDKs/MacOSX10.4u.sdk/ ARCHS=\"ppc i386\"" 261 } 259 262 260 263 # iterate on targets if there is any, do -alltargets otherwise. 261 264 if {"$xcode_targets" == ""} { … … 289 292 set xcode_install_path_setting [xcode::get_install_path_setting \ 290 293 ${xcode.destroot.path} ${xcode.destroot.type}] 291 294 set xcode_build_args "OBJROOT=build/ SYMROOT=build/" 295 if {[variant_isset universal]} { 296 set xcode_build_args "${xcode_build_args} SDKROOT=/Developer/SDKs/MacOSX10.4u.sdk/ ARCHS=\"ppc i386\"" 297 } 292 298 293 299 # iterate on targets if there is any, do -alltargets otherwise. 294 300 if {"$xcode_targets" == ""} { … … 303 309 } 304 310 } 305 311 } 312 313 # dummy variant that will be picked up by build and destroot phases 314 variant universal {}