Fixed test using Xcode default compiler. Fixed makefile convert recipe to include ASM files

pull/75/head
Jeffrey Walton 2015-12-04 12:52:40 -05:00
parent 401308d14e
commit db1c95401c
2 changed files with 3 additions and 3 deletions

View File

@ -413,8 +413,8 @@ endif
.PHONY: convert .PHONY: convert
convert: convert:
-chmod 0700 TestVectors/ TestData/ -chmod 0700 TestVectors/ TestData/
-chmod 0600 $(TEXT_FILES) *.zip -chmod 0600 $(TEXT_FILES) *.asm *.S *.zip
-chmod 0700 $(EXEC_FILES) -chmod 0700 $(EXEC_FILES) *.sh *.cmd
-chmod 0700 *.cmd *.sh GNUmakefile GNUmakefile-cross -chmod 0700 *.cmd *.sh GNUmakefile GNUmakefile-cross
-unix2dos --keepdate --quiet $(TEXT_FILES) *.asm *.cmd -unix2dos --keepdate --quiet $(TEXT_FILES) *.asm *.cmd
-dos2unix --keepdate --quiet GNUmakefile GNUmakefile-cross *.S *.sh -dos2unix --keepdate --quiet GNUmakefile GNUmakefile-cross *.S *.sh

View File

@ -752,7 +752,7 @@ if [ "$IS_DARWIN" -ne "0" ]; then
XCODE_COMPILER=$(find /Developer/Applications/Xcode.app -name clang++ 2>/dev/null | head -1) XCODE_COMPILER=$(find /Developer/Applications/Xcode.app -name clang++ 2>/dev/null | head -1)
fi fi
if [ -z "$XCODE_COMPILER" ]; then if [ ! -z "$XCODE_COMPILER" ]; then
echo echo
echo "************************************" | tee -a "$TEST_RESULTS" echo "************************************" | tee -a "$TEST_RESULTS"
echo "Testing: Xcode Clang compiler" | tee -a "$TEST_RESULTS" echo "Testing: Xcode Clang compiler" | tee -a "$TEST_RESULTS"