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 24 25 25 ( 26 26 cp -r 'buildsrc' 'build' 27 27 cd "${BUILDDIR}" || exit 1 28 28 29 29 # Compile all objects... 30 30 ## TODO: XXX: Need to replace this with a configure script 31 - ${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 31 + ${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 || \ 32 + ${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 32 33 strip kit >/dev/null 2>/dev/null 33 34 34 35 # Create VFS directory 35 36 mkdir "starpack.vfs" 36 37 mkdir "starpack.vfs/lib" 37 38 38 39 ## Copy in all built directories