X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-config.sh;h=911fa247651ea71f60bf9c01d454855a685a8f9d;hb=ce798749f957d005670b71edf38b893264e4f7ba;hp=c8e485b8b843666d27204a233cc350881f8d5313;hpb=3d2165e67f9ad1443f6e7d8ad24810000b0436e8;p=sbcl.git diff --git a/make-config.sh b/make-config.sh index c8e485b..911fa24 100644 --- a/make-config.sh +++ b/make-config.sh @@ -161,6 +161,13 @@ case "$sbcl_os" in linux) printf ' :elf' >> $ltf printf ' :linux' >> $ltf + + # If you add other platforms here, don't forget to edit + # src/runtime/Config.foo-linux too. + if [ $sbcl_arch = "x86" ]; then + printf ' :largefile' >> $ltf + fi + if [ $sbcl_arch = "x86-64" ]; then link_or_copy Config.x86_64-linux Config else @@ -184,6 +191,9 @@ case "$sbcl_os" in freebsd) printf ' :elf' >> $ltf printf ' :freebsd' >> $ltf + if [ $sbcl_arch = "x86" ]; then + printf ' :sb-lutex :restore-tls-segment-register-from-tls' >> $ltf + fi link_or_copy Config.$sbcl_arch-freebsd Config ;; openbsd) @@ -205,14 +215,20 @@ case "$sbcl_os" in darwin) printf ' :mach-o' >> $ltf printf ' :bsd' >> $ltf + printf ' :darwin' >> $ltf + if [ $sbcl_arch = "x86" ]; then + printf ' :sb-lutex :restore-fs-segment-register-from-tls' >> $ltf + fi link_or_copy $sbcl_arch-darwin-os.h target-arch-os.h link_or_copy bsd-os.h target-os.h - printf ' :darwin' >> $ltf link_or_copy Config.$sbcl_arch-darwin Config ;; sunos) printf ' :elf' >> $ltf printf ' :sunos' >> $ltf + if [ $sbcl_arch = "x86" ]; then + printf ' :sb-lutex' >> $ltf + fi link_or_copy Config.$sbcl_arch-sunos Config link_or_copy $sbcl_arch-sunos-os.h target-arch-os.h link_or_copy sunos-os.h target-os.h @@ -255,7 +271,7 @@ cd $original_dir if [ "$sbcl_arch" = "x86" ]; then printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack' >> $ltf printf ' :stack-allocatable-closures :alien-callbacks' >> $ltf - if [ "$sbcl_os" = "linux" ] || [ "$sbcl_os" = "freebsd" ] || [ "$sbcl_os" = "netbsd" ] || [ "$sbcl_os" = "sunos" ] || [ "$sbcl_os" = "darwin" ]; then + if [ "$sbcl_os" = "linux" ] || [ "$sbcl_os" = "freebsd" ] || [ "$sbcl_os" = "netbsd" ] || [ "$sbcl_os" = "sunos" ] || [ "$sbcl_os" = "darwin" ] || [ "$sbcl_os" = "win32" ]; then printf ' :linkage-table' >> $ltf fi if [ "$sbcl_os" = "win32" ]; then @@ -273,7 +289,7 @@ elif [ "$sbcl_arch" = "mips" ]; then # cross-compilers! # # FIXME: integrate to grovel-features, mayhaps - $GNUMAKE -C tools-for-build determine-endianness -I src/runtime + $GNUMAKE -C tools-for-build determine-endianness -I ../src/runtime tools-for-build/determine-endianness >> $ltf elif [ "$sbcl_arch" = "ppc" -a "$sbcl_os" = "linux" ]; then # Use a C program to detect which kind of glibc we're building on, @@ -282,8 +298,8 @@ elif [ "$sbcl_arch" = "ppc" -a "$sbcl_os" = "linux" ]; then # # FIXME: integrate to grovel-features., maypahps printf ' :gencgc :stack-allocatable-closures :linkage-table' >> $ltf - $GNUMAKE -C tools-for-build where-is-mcontext -I src/runtime - tools-for-build/where-is-mcontext > src/runtime/ppc-linux-mcontext.h + $GNUMAKE -C tools-for-build where-is-mcontext -I ../src/runtime + tools-for-build/where-is-mcontext > src/runtime/ppc-linux-mcontext.h || (echo "error running where-is-mcontext"; exit 1) elif [ "$sbcl_arch" = "ppc" -a "$sbcl_os" = "darwin" ]; then printf ' :gencgc :stack-allocatable-closures' >> $ltf # We provide a dlopen shim, so a little lie won't hurt