Skip to content

Commit 0a798f6

Browse files
Darwindas
Darwin
authored andcommitted
1 parent 82dda5e commit 0a798f6

File tree

1,695 files changed

+278930
-53551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,695 files changed

+278930
-53551
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ BUILD/
33
build/
44
.DS_Store
55

6-
# vim turds
6+
# vim swap files
77
*~
88
*.swp
99

10+
# JSON compilation definitions (for the YouCompleteMe vim plugin)
11+
compile_commands.json
12+
1013
# /
1114
/.remotebuild_credential
1215
/cscope.*

.upstream_base_commits

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#freebsd = https://github.com/freebsd/freebsd.git
22
bsd/man/man2/access.2 freebsd lib/libc/sys/access.2 5b882020081a138285227631c46a406c08e17bc8
33
bsd/man/man7/sticky.7 freebsd share/man/man7/sticky.7 5b882020081a138285227631c46a406c08e17bc8
4+
bsd/man/man2/utimensat.2 freebsd lib/libc/sys/utimensat.2 89c1fcc0d088065021703b658ef547f46b5481f0
5+
tools/tests/darwintests/netbsd_utimensat.c freebsd contrib/netbsd-tests/lib/libc/c063/t_utimensat.c 89c1fcc0d088065021703b658ef547f46b5481f0

EXTERNAL_HEADERS/AvailabilityMacros.h

+2
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@
124124
#else
125125
#if __i386__ || __x86_64__
126126
#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_4
127+
#elif __arm__ || __arm64__
128+
#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_5
127129
#else
128130
#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_1
129131
#endif
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2+
export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3+
export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4+
export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5+
6+
include $(MakeInc_cmd)
7+
include $(MakeInc_def)
8+
9+
EXPORT_FILES = \
10+
arm_neon.h \
11+
12+
INSTALL_MD_LIST =
13+
14+
INSTALL_MD_DIR =
15+
16+
EXPORT_MD_LIST = ${EXPORT_FILES}
17+
18+
EXPORT_MD_DIR = architecture/arm
19+
20+
include $(MakeInc_rule)
21+
include $(MakeInc_dir)

0 commit comments

Comments
 (0)