X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=make-config.sh;h=e725cfe514766b21957bfe1ac124f4ae973bf0aa;hb=988afd9d54ba6c8a915544822658824ab6ae0d6c;hp=c1d49bec15efd94b4dfb1fddcb1070ad1bf0f4c9;hpb=75b52379bdc2269961af6a1308eca63610f38ac3;p=sbcl.git diff --git a/make-config.sh b/make-config.sh index c1d49be..e725cfe 100644 --- a/make-config.sh +++ b/make-config.sh @@ -58,7 +58,7 @@ printf ":%s" "$sbcl_arch" >> $ltf for d in src/compiler src/assembly; do echo //setting up symlink $d/target original_dir=`pwd` - cd $d + cd ./$d if [ -h target ] ; then rm target elif [ -w target ] ; then @@ -85,7 +85,7 @@ ln -s ../assembly src/compiler/assembly echo //setting up OS-dependent information original_dir=`pwd` -cd src/runtime/ +cd ./src/runtime/ rm -f Config target-arch-os.h target-arch.h target-os.h target-lispregs.h # KLUDGE: these two logically belong in the previous section # ("architecture-dependent"); it seems silly to enforce this in terms @@ -131,6 +131,7 @@ case `uname` in ;; NetBSD) printf ' :netbsd' >> $ltf + sbcl_os="netbsd" ln -s Config.$sbcl_arch-netbsd Config ;; *) @@ -185,7 +186,7 @@ cd $original_dir # similar with :STACK-GROWS-FOOWARD, too. -- WHN 2002-03-03 if [ "$sbcl_arch" = "x86" ]; then printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack' >> $ltf - if [ "$sbcl_os" = "linux" ] || [ "$sbcl_os" = "freebsd" ]; then + if [ "$sbcl_os" = "linux" ] || [ "$sbcl_os" = "freebsd" ] || [ "$sbcl_os" = "netbsd" ]; then printf ' :linkage-table' >> $ltf fi elif [ "$sbcl_arch" = "mips" ]; then @@ -219,7 +220,7 @@ elif [ "$sbcl_arch" = "sparc" ]; then # FUNCDEF macro for assembler. No harm in running this on sparc-linux # as well. sh tools-for-build/sparc-funcdef.sh > src/runtime/sparc-funcdef.h - if [ "$sbcl_os" = "sunos" ]; then + if [ "$sbcl_os" = "sunos" ] || [ "$sbcl_os" = "linux" ]; then printf ' :linkage-table' >> $ltf fi else