Differences From Artifact [bdca019302]:
- Executable file kitsh/build.sh — part of check-in [e050506a1c] at 2010-09-26 04:37:33 on branch trunk — Fixed bootstrapping to work (user: rkeene, size: 1584) [annotate] [blame] [check-ins using]
To Artifact [9c9a954427]:
- Executable file
kitsh/build.sh
— part of check-in
[8d94c2989e]
at
2010-09-26 04:37:46
on branch trunk
— Removed building shared verions of code
Added support for passing arguments to child "configure" scripts
Added Solaris compile support (user: rkeene, size: 1809) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
24 25 26 27 28 29 30 |
(
cp -r 'buildsrc' 'build'
cd "${BUILDDIR}" || exit 1
# Compile all objects...
## TODO: XXX: Need to replace this with a configure script
| | > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
(
cp -r 'buildsrc' 'build'
cd "${BUILDDIR}" || exit 1
# Compile all objects...
## TODO: XXX: Need to replace this with a configure script
${CC:-cc} ${CPPFLAGS} ${CFLAGS} -I${TCLCONFIGDIR} -I${TCLCONFIGDIR}/../generic -o kit *.c $(find "${OTHERPKGSDIR}" -name '*.a' | grep '/inst/') ${LDFLAGS} -lz -lm -ldl -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic || \
${CC:-cc} ${CPPFLAGS} ${CFLAGS} -I${TCLCONFIGDIR} -I${TCLCONFIGDIR}/../generic -o kit *.c $(find "${OTHERPKGSDIR}" -name '*.a' | grep '/inst/') ${LDFLAGS} -lz -lm -ldl -lnsl -lsocket -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
strip kit >/dev/null 2>/dev/null
# Create VFS directory
mkdir "starpack.vfs"
mkdir "starpack.vfs/lib"
## Copy in all built directories
|
| ︙ | ︙ |