]> git.saurik.com Git - apple/hfs.git/commitdiff
hfs-407.30.1.tar.gz macos-10132 macos-10133 v407.30.1
authorApple <opensource@apple.com>
Sat, 3 Feb 2018 22:31:58 +0000 (22:31 +0000)
committerApple <opensource@apple.com>
Sat, 3 Feb 2018 22:31:58 +0000 (22:31 +0000)
tests/gen-dmg.sh
tests/gen-test-plist.sh

index 92d1122c1f88fbcf8d7ce013d7ff1b86decdeb6c..afb94624f2f5841a5721255403b65b1c3837b69a 100755 (executable)
@@ -9,7 +9,7 @@
 set -e
 
 mkdir -p "$DERIVED_FILE_DIR"
-env -i xcrun clang "$SRCROOT"/tests/img-to-c.c -lz -o "$DERIVED_FILE_DIR"/img-to-c
+env -i xcrun -sdk macosx.internal clang "$SRCROOT"/tests/img-to-c.c -lz -o "$DERIVED_FILE_DIR"/img-to-c
 
 "$DERIVED_FILE_DIR"/img-to-c -size 2g -type SPARSE -fs JHFS+ -uid 501 -gid 501 >"$1"
 
index 85d2a33ab6b9af87c61361aca76bdf34a71753ba..054ec9a1317302dc7a7234ad548d30fba2dc622b 100755 (executable)
@@ -37,19 +37,19 @@ grep -l -E '^TEST\(' *.[cm] | xargs xcrun clang -E -D TEST=TEST \
        grep -h -E 'TEST\(' >>"$DERIVED_FILE_DIR"/list-tests.c
 
 # Build an executable for the host platform
-env -i xcrun clang -x objective-c++ -I.. -c ../hfs-tests.mm \
+env -i xcrun -sdk macosx.internal clang -x objective-c++ -I.. -c ../hfs-tests.mm \
        -o "$DERIVED_FILE_DIR"/hfs-tests.o -std=gnu++1y
 
-env -i xcrun clang -x objective-c -I.. -c ../disk-image.m \
+env -i xcrun -sdk macosx.internal clang -x objective-c -I.. -c ../disk-image.m \
        -o "$DERIVED_FILE_DIR"/disk-image.o
 
-env -i xcrun clang -x c -I.. -c ../systemx.c \
+env -i xcrun -sdk macosx.internal clang -x c -I.. -c ../systemx.c \
        -o "$DERIVED_FILE_DIR"/systemx.o
 
-env -i xcrun clang -x c -c "$DERIVED_FILE_DIR"/list-tests.c \
+env -i xcrun -sdk macosx.internal clang -x c -c "$DERIVED_FILE_DIR"/list-tests.c \
        -o "$DERIVED_FILE_DIR"/list-tests.o
 
-env -i xcrun clang++ "$DERIVED_FILE_DIR"/hfs-tests.o \
+env -i xcrun -sdk macosx.internal clang++ "$DERIVED_FILE_DIR"/hfs-tests.o \
        "$DERIVED_FILE_DIR"/disk-image.o "$DERIVED_FILE_DIR"/list-tests.o \
        -o "$DERIVED_FILE_DIR"/list-tests "$DERIVED_FILE_DIR"/systemx.o \
        -framework Foundation -lstdc++