TclPKCS11

Check-in [07e5971a1c]
Login
Overview
Comment:Added FreeBSD/amd64 build target Updated to try to download cross-compiled SDKs
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 07e5971a1cbfc9f96945586102c91c4a9f8de06ae9bebcfbeef1250d02692764
User & Date: rkeene on 2012-05-12 18:31:04
Other Links: manifest | tags
Context
2012-07-19
00:25
Updated to use newer mingw32 conventions check-in: 3e08f3d352 user: rkeene tags: trunk
2012-05-12
18:31
Added FreeBSD/amd64 build target Updated to try to download cross-compiled SDKs check-in: 07e5971a1c user: rkeene tags: trunk
18:31
Subversion to Fossil Copy Commit. Please Ignore. Recording copying build/make-linuxamd64 to build/make-freebsdamd64. check-in: 6444eb1ec6 user: rkeene tags: trunk
Changes

Modified build/make-cc-common.sh from [4119a6011e] to [d025e1d023].

1
2
3
4
5
6
7
8
9
10
11

12
13
14
15
16
17
18
#! /bin/sh

make distclean

rm -rf .tmp
mkdir .tmp

(
	cd .tmp || exit 1

	wget -O sdk.tar.gz "http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/libtclkit-8.5.11-${SHORTTARGET}-kitdll-sdk.tar.gz"


	tar --strip-components=1 -xf sdk.tar.gz

	rm -f sdk.tar.gz
) || exit 1

TCLKIT_SDK_DIR="$(pwd)/.tmp"










|
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

make distclean

rm -rf .tmp
mkdir .tmp

(
	cd .tmp || exit 1

	wget -O sdk.tar.gz "http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/libtclkit-8.5.11-${SHORTTARGET}-kitdll-sdk.tar.gz" || \
		wget -O sdk.tar.gz "http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/libtclkit-8.5.11-${SHORTTARGET}-kitdll-xcompile-sdk.tar.gz"

	tar --strip-components=1 -xf sdk.tar.gz

	rm -f sdk.tar.gz
) || exit 1

TCLKIT_SDK_DIR="$(pwd)/.tmp"

Modified build/make-freebsdamd64 from [f41e246b79] to [c8609deded].

1
2
3
4
5
6
#! /bin/sh

TARGET="x86_64-unknown-linux-gnu"
SHORTTARGET="linux-amd64"

. build/make-cc-common.sh


|
|


1
2
3
4
5
6
#! /bin/sh

TARGET="x86_64-unknown-freebsd8"
SHORTTARGET="freebsd-amd64"

. build/make-cc-common.sh