X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-config.sh;h=911fa247651ea71f60bf9c01d454855a685a8f9d;hb=b354361e9d4df906986bf19ba5d064bdbed0b13b;hp=c925c5825b4f65912e983792dd54ae73810fdd25;hpb=44c608efa2e73df1c1ab7e259db405b9060c64a1;p=sbcl.git diff --git a/make-config.sh b/make-config.sh index c925c58..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