-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcmake-update-cmake-lists.sh
More file actions
executable file
·135 lines (116 loc) · 6.17 KB
/
cmake-update-cmake-lists.sh
File metadata and controls
executable file
·135 lines (116 loc) · 6.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/bin/bash
##===----------------------------------------------------------------------===##
##
## This source file is part of the Swift.org open source project
##
## Copyright (c) 2026 Apple Inc. and the Swift project authors
## Licensed under Apache License v2.0 with Runtime Library Exception
##
## See https://swift.org/LICENSE.txt for license information
## See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
##
##===----------------------------------------------------------------------===##
set -eu
log() { printf -- "** %s\n" "$*" >&2; }
error() { printf -- "** ERROR: %s\n" "$*" >&2; }
fatal() { error "$@"; exit 1; }
config="${CONFIG_JSON:=""}"
fail_on_changes="${FAIL_ON_CHANGES:="false"}"
if [ -z "$config" ]; then
fatal "Configuration must be provided."
fi
here=$(pwd)
case "$(uname -s)" in
Darwin)
find=gfind # brew install findutils
;;
*)
find='find'
;;
esac
function update_cmakelists_source() {
src_root="$here/Sources/$1"
src_exts=("*.c" "*.swift" "*.cc")
num_exts=${#src_exts[@]}
log "Finding source files (" "${src_exts[@]}" ") and platform independent assembly files under $src_root"
# Build file extensions argument for `find`
declare -a exts_arg
exts_arg+=(-name "${src_exts[0]}")
for (( i=1; i<num_exts; i++ ));
do
exts_arg+=(-o -name "${src_exts[$i]}")
done
# Build an array with the rest of the arguments
shift
exceptions=("$@")
# Add path exceptions for `find`
if (( ${#exceptions[@]} )); then
log "Excluding source paths (" "${exceptions[@]}" ") under $src_root"
num_exceptions=${#exceptions[@]}
for (( i=0; i<num_exceptions; i++ ));
do
exts_arg+=(! -path "${exceptions[$i]}")
done
fi
# Wrap quotes around each filename since it might contain spaces
srcs=$($find -L "${src_root}" -type f \( "${exts_arg[@]}" \) -printf ' "%P"\n' | LC_ALL=POSIX sort)
asm_srcs=$($find -L "${src_root}" -type f \( \( -name "*.S" -a ! -name "*x86_64*" -a ! -name "*arm*" -a ! -name "*apple*" -a ! -name "*linux*" \) \) -printf ' "$<$<NOT:$<PLATFORM_ID:Windows>>:%P>"\n' | LC_ALL=POSIX sort)
srcs="$srcs"$'\n'"$asm_srcs"
log "$srcs"
# Update list of source files in CMakeLists.txt
# The first part in `BEGIN` (i.e., `undef $/;`) is for working with multi-line;
# the second is so that we can pass in a variable to replace with.
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/add_library\(([^\n]+)\n([^\)]+)/add_library\($1\n$replace/' "$srcs" "$src_root/CMakeLists.txt"
log "Updated $src_root/CMakeLists.txt"
}
function update_cmakelists_assembly() {
src_root="$here/Sources/$1"
log "Finding assembly files (.S) under $src_root"
mac_x86_64_asms=$($find "${src_root}" -type f \( -name "*x86_64*" -or -name "*avx2*" \) -name "*apple*" -name "*.S" -printf ' %P\n' | LC_ALL=POSIX sort)
linux_x86_64_asms=$($find "${src_root}" -type f \( -name "*x86_64*" -or -name "*avx2*" \) -name "*linux*" -name "*.S" -printf ' %P\n' | LC_ALL=POSIX sort)
win_x86_64_asms=$($find "${src_root}" -type f \( -name "*x86_64*" -or -name "*avx2*" \) -name "*win*" -name "*.S" -printf ' %P\n' | LC_ALL=POSIX sort)
mac_aarch64_asms=$($find "${src_root}" -type f -name "*armv8*" -name "*apple*" -name "*.S" -printf ' %P\n' | LC_ALL=POSIX sort)
linux_aarch64_asms=$($find "${src_root}" -type f -name "*armv8*" -name "*linux*" -name "*.S" -printf ' %P\n' | LC_ALL=POSIX sort)
win_aarch64_asms=$($find "${src_root}" -type f -name "*armv8*" -name "*win*" -name "*.S" -printf ' %P\n' | LC_ALL=POSIX sort)
log "$mac_x86_64_asms"
log "$linux_x86_64_asms"
log "$win_x86_64_asms"
log "$mac_aarch64_asms"
log "$linux_aarch64_asms"
log "$win_aarch64_asms"
# Update list of assembly files in CMakeLists.txt
# The first part in `BEGIN` (i.e., `undef $/;`) is for working with multi-line;
# the second is so that we can pass in a variable to replace with.
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/Darwin([^\)]+)x86_64"\)\n target_sources\(([^\n]+)\n([^\)]+)/Darwin$1x86_64"\)\n target_sources\($2\n$replace/' "$mac_x86_64_asms" "$src_root/CMakeLists.txt"
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/Linux([^\)]+)x86_64"\)\n target_sources\(([^\n]+)\n([^\)]+)/Linux$1x86_64"\)\n target_sources\($2\n$replace/' "$linux_x86_64_asms" "$src_root/CMakeLists.txt"
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/Windows([^\)]+)x86_64"\)\n target_sources\(([^\n]+)\n([^\)]+)/Windows$1x86_64"\)\n target_sources\($2\n$replace/' "$win_x86_64_asms" "$src_root/CMakeLists.txt"
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/Darwin([^\)]+)aarch64"\)\n target_sources\(([^\n]+)\n([^\)]+)/Darwin$1aarch64"\)\n target_sources\($2\n$replace/' "$mac_aarch64_asms" "$src_root/CMakeLists.txt"
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/Linux([^\)]+)aarch64"\)\n target_sources\(([^\n]+)\n([^\)]+)/Linux$1aarch64"\)\n target_sources\($2\n$replace/' "$linux_aarch64_asms" "$src_root/CMakeLists.txt"
perl -pi -e 'BEGIN { undef $/; $replace = shift } s/Windows([^\)]+)aarch64"\)\n target_sources\(([^\n]+)\n([^\)]+)/Windows$1aarch64"\)\n target_sources\($2\n$replace/' "$win_aarch64_asms" "$src_root/CMakeLists.txt"
log "Updated $src_root/CMakeLists.txt"
}
echo "$config" | jq -c '.targets[]' | while read -r target; do
name="$(echo "$target" | jq -r .name)"
type="$(echo "$target" | jq -r .type)"
exceptions=("$(echo "$target" | jq -r .exceptions | jq -r @sh)")
log "Updating cmake list for ${name}"
case "$type" in
source)
update_cmakelists_source "$name" "${exceptions[@]}"
;;
assembly)
update_cmakelists_assembly "$name"
;;
*)
fatal "Unknown target type: $type"
;;
esac
done
if [[ "${fail_on_changes}" == true ]]; then
git_status_output=$(git status --untracked-files=no --porcelain 2>&1) || fatal "git status failed: $git_status_output"
if [ -n "$git_status_output" ]; then
fatal "Changes in the cmake files detected. Please update. -- $(git diff)"
else
log "✅ CMake files are up-to-date."
fi
fi