Compare commits

..

No commits in common. "1f26d15160cf2e429870f5d2f85f4a0f08563a71" and "ebba9f591ebb6f4d610bad36b5c5c82d474ec9e0" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -79,7 +79,7 @@ endif
ifneq (,$(firstword $(filter %mingw32 %-windows-gnu %-cygwin %-cygnus,$(MACHINE))))
EXE_SUFFIX := .exe
LIB_SUFFIX := .$(if $(subst 0,,$(SHARED)),dll,a)
LIB_SUFFIX := .$(if $(subst 0,,$(SHARED)),dll,lib)
else
LIB_SUFFIX := .$(if $(subst 0,,$(SHARED)),$(if $(findstring -apple-darwin,$(MACHINE)),dylib,so),a)
endif

View File

@ -15,11 +15,7 @@ fi
rm -rf "out" && mkdir -p "out"
if [ "$(arch)" == "x86_64" ]; then
mk_slunk "x86_64" "x86_64-gnu" "MARCH=x86-64 MTUNE=nocona"
else
mk_slunk "i686" "i686-gnu" "MARCH=pentiumpro MTUNE=pentium3"
fi
mk_slunk "i686" "i686-gnu" "MARCH=pentiumpro MTUNE=pentium3"
./etc/build/build_info.sh "gcc" > "out/.build_info"