--- file_not_specified_in_diff +++ file_not_specified_in_diff @@ -, +, @@ --- FreeBASIC-1.05.0-source/makefile +++ FreeBASIC-1.05.0-source/makefile @@ -1050,31 +1050,31 @@ bootstrap-dist: # Precompile fbc sources for various targets rm -rf bootstrap - mkdir -p bootstrap/dos + #mkdir -p bootstrap/dos mkdir -p bootstrap/linux-x86 mkdir -p bootstrap/linux-x86_64 - mkdir -p bootstrap/win32 - mkdir -p bootstrap/win64 - ./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target dos && mv src/compiler/*.asm bootstrap/dos + #mkdir -p bootstrap/win32 + #mkdir -p bootstrap/win64 + #./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target dos && mv src/compiler/*.asm bootstrap/dos ./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target linux-x86 && mv src/compiler/*.asm bootstrap/linux-x86 ./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target linux-x86_64 && mv src/compiler/*.c bootstrap/linux-x86_64 - ./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target win32 && mv src/compiler/*.asm bootstrap/win32 - ./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target win64 && mv src/compiler/*.c bootstrap/win64 + #./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target win32 && mv src/compiler/*.asm bootstrap/win32 + #./$(FBC_EXE) src/compiler/*.bas -m fbc -i inc -e -r -v -target win64 && mv src/compiler/*.c bootstrap/win64 # Ensure to have LFs regardless of host system (LFs will probably on # DOS/Win32, but CRLFs could cause issues on Linux) - dos2unix bootstrap/dos/* + #dos2unix bootstrap/dos/* dos2unix bootstrap/linux-x86/* dos2unix bootstrap/linux-x86_64/* - dos2unix bootstrap/win32/* - dos2unix bootstrap/win64/* + #dos2unix bootstrap/win32/* + #dos2unix bootstrap/win64/* # Package FB sources (similar to our "gitdist" command), and add the bootstrap/ directory # Making a .tar.xz should be good enough for now. - git -c core.autocrlf=false archive --format tar --prefix "$(FBBOOTSTRAPTITLE)/" HEAD | tar xf - - mv bootstrap $(FBBOOTSTRAPTITLE) - tar -cJf "$(FBBOOTSTRAPTITLE).tar.xz" "$(FBBOOTSTRAPTITLE)" - rm -rf "$(FBBOOTSTRAPTITLE)" + #git -c core.autocrlf=false archive --format tar --prefix "$(FBBOOTSTRAPTITLE)/" HEAD | tar xf - + #mv bootstrap $(FBBOOTSTRAPTITLE) + #tar -cJf "$(FBBOOTSTRAPTITLE).tar.xz" "$(FBBOOTSTRAPTITLE)" + #rm -rf "$(FBBOOTSTRAPTITLE)" # # Build the fbc[.exe] binary from the precompiled sources in the bootstrap/