TclPKCS11

Check-in [1a31c6f305]
Login

Check-in [1a31c6f305]

Overview
Comment:Updated to begin to use KitDLL SDKs for building
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1a31c6f305c98e157c50a8dfecd9f5a0f4e9f7980b095d79d9f4443c6b540390
User & Date: rkeene on 2012-05-12 17:12:51.000
Other Links: manifest | tags
Context
2012-05-12
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
17:12
Updated to begin to use KitDLL SDKs for building check-in: 1a31c6f305 user: rkeene tags: trunk
2012-03-10
20:46
Switched to using "aclocal" to generate aclocal.m4 check-in: 5bfd2336f5 user: rkeene tags: trunk
Changes


1
2
3
4
5
6
7


Makefile
Makefile/*
aclocal.m4
aclocal.m4/*
autom4te.cache
autom4te.cache/*
config.log
>
>







1
2
3
4
5
6
7
8
9
.tmp
.tmp/*
Makefile
Makefile/*
aclocal.m4
aclocal.m4/*
autom4te.cache
autom4te.cache/*
config.log
1
2
3
4
















5
6
7
8
9
10
11
12
13
14


#! /bin/sh

make distclean

















CCROOT="/home/rkeene/root/cross-compilers"
CC="${CCROOT}/${TARGET}/bin/${TARGET}-gcc" ./configure --host="${TARGET}" --with-tcl="$(pwd)/build/${SHORTTARGET}"

# Replace version with the version
. build/makearch.info
sed "s/@@VERS@@/${VERS}/g" Makefile > Makefile.new && cat Makefile.new > Makefile
rm -f Makefile.new

gmake
"${CCROOT}/${TARGET}/bin/${TARGET}-strip" -x tclpkcs11.so






>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

|








>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! /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"
export TCLKIT_SDK_DIR

CCROOT="/home/rkeene/root/cross-compilers"
CC="${CCROOT}/${TARGET}/bin/${TARGET}-gcc" ./configure --host="${TARGET}" --with-tcl="$(pwd)/.tmp/lib"

# Replace version with the version
. build/makearch.info
sed "s/@@VERS@@/${VERS}/g" Makefile > Makefile.new && cat Makefile.new > Makefile
rm -f Makefile.new

gmake
"${CCROOT}/${TARGET}/bin/${TARGET}-strip" -x tclpkcs11.so

rm -rf .tmp
1
2
3
4
5
6
#! /bin/sh

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

. build/make-cc-common.sh



|


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/bash

./build/autogen.sh
rm -f aclocal.m4



exit 0




>
>


1
2
3
4
5
6
7
8
#! /bin/bash

./build/autogen.sh
rm -f aclocal.m4

rm -rf work

exit 0
Deleted build/win32/tcl.h version [5e654ca2e7].