Differences From Artifact [2e10cd62cc]:
- File build/test/tests/01-pkgconfig.tcl — part of check-in [2de7bba382] at 2013-10-02 11:45:12 on branch trunk — Updated check for 64bit platforms (user: rkeene, size: 339) [annotate] [blame] [check-ins using]
To Artifact [7817026d2e]:
- File build/test/tests/01-pkgconfig.tcl — part of check-in [ee0059a1c6] at 2013-10-03 19:17:50 on branch trunk — Added debug output for pkgconfig (user: rkeene, size: 445) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 | } else { set is64bit 0 } if {[tcl::pkgconfig get 64bit] == $is64bit} { exit 0 } exit 1 | > > | 12 13 14 15 16 17 18 19 20 21 22 | } else { set is64bit 0 } if {[tcl::pkgconfig get 64bit] == $is64bit} { exit 0 } puts "tcl::pkgconfig get returned [tcl::pkgconfig get 64bit], but we platform 64 bit returned: $is64bit" exit 1 |