Overview
Comment: | Updated remote build scripts to use more generic names |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4ceaee58af2ad67aec820eb2b92597f0 |
User & Date: | rkeene on 2016-09-28 13:19:14 |
Other Links: | manifest | tags |
Context
2016-09-28
| ||
14:24 | KitCreator 0.10.0 check-in: 176640acaf user: rkeene tags: trunk, 0.10.0 | |
13:19 | Updated remote build scripts to use more generic names check-in: 4ceaee58af user: rkeene tags: trunk | |
13:15 | Cleaned up extraneous error with newer versions of Tcl check-in: 0916e5fc45 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-macosx-amd64 from [2ff67a4329] to [7169083644].
1 2 3 4 5 6 | #! /bin/sh CC='gcc -arch x86_64' CXX='g++ -arch x86_64' export CC CXX | | | 1 2 3 4 5 6 7 | #! /bin/sh CC='gcc -arch x86_64' CXX='g++ -arch x86_64' export CC CXX ./build/make-kit-remote macosx-x86_64.build.kitcreator.rkeene.org "$@" --enable-aqua --host=x86_64-apple-darwin9 |
Modified build/make-kit-macosx-i386 from [d0ef76fb73] to [f3f1008dd5].
1 2 3 4 5 6 | #! /bin/sh CC='gcc -arch i386' CXX='g++ -arch i386' export CC CXX | | | 1 2 3 4 5 6 7 | #! /bin/sh CC='gcc -arch i386' CXX='g++ -arch i386' export CC CXX ./build/make-kit-remote macosx-x86.build.kitcreator.rkeene.org "$@" --enable-aqua --host=i386-apple-darwin9 |
Modified build/make-kit-macosx-ppc from [90b249d07a] to [cdf6ca70f0].
1 2 | #! /bin/sh | | | 1 2 3 | #! /bin/sh ./build/make-kit-remote macosx-ppc.build.kitcreator.rkeene.org "$@" --enable-aqua |
Modified build/make-kit-macosx-ppc64 from [9ab10e87a6] to [5f83399bd9].
1 2 3 4 5 6 | #! /bin/sh CC='gcc -arch ppc64' CXX='g++ -arch ppc64' export CC CXX | | | 1 2 3 4 5 6 7 | #! /bin/sh CC='gcc -arch ppc64' CXX='g++ -arch ppc64' export CC CXX ./build/make-kit-remote macosx-ppc64.build.kitcreator.rkeene.org "$@" --enable-aqua |