-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJinxfile
More file actions
169 lines (149 loc) · 7.04 KB
/
Jinxfile
File metadata and controls
169 lines (149 loc) · 7.04 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#! /bin/sh
# Jinx config file. Contains globals and helper functions for jinx recipes.
JINX_MAJOR_VER=0.8
JINX_DEBIAN_SNAPSHOT=20251202T083052Z
JINX_BASE_PACKAGES="autopoint bison cmake docbook-xsl docbook-xml docbook-xsl-ns docbook5-xml doxygen file flex gettext groff m4 make meson ninja-build perl python3 texinfo w3m which xmlto xsltproc"
JINX_CMAKE_PLATFORM=build-support/cmake-host/Platform/Nomos.cmake
# Flags for host recipes.
HOST_CFLAGS="-O2 -pipe -fstack-clash-protection"
HOST_CXXFLAGS="${HOST_CFLAGS} -Wp,-D_GLIBCXX_ASSERTIONS" # WE WANT ASSERTIONS!!!!
HOST_LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now"
# Flags for recipes to be built for the distribution.
TARGET_CFLAGS="$HOST_CFLAGS"
TARGET_CXXFLAGS="$HOST_CXXFLAGS"
TARGET_LDFLAGS="$HOST_LDFLAGS"
# Target triplet for stuff like gcc. eg. x86_64-nomos-mlibc-gcc
OS_TRIPLET=${JINX_ARCH}-nomos-mlibc
if [ "$JINX_ARCH" == x86_64 ]; then
GENERIC_ARCHFLAGS="-march=x86-64 -mtune=generic -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"
TARGET_CFLAGS="$TARGET_CFLAGS $GENERIC_ARCHFLAGS"
TARGET_CXXFLAGS="$TARGET_CXXFLAGS $GENERIC_ARCHFLAGS"
TARGET_LDFLAGS="$TARGET_LDFLAGS -Wl,-z,pack-relative-relocs"
fi
meson_configure() {
CFLAGS="$TARGET_CFLAGS" \
CXXFLAGS="$TARGET_CXXFLAGS" \
LDFLAGS="$TARGET_LDFLAGS" \
meson_configure_noflags "$@"
}
meson_configure_noflags() {
if [ -z "${meson_source_dir}" ]; then
meson_source_dir="${source_dir}"
fi
meson setup "${meson_source_dir}" \
--cross-file "${base_dir}/build-support/cross_file-$JINX_ARCH.txt" \
--prefix=${prefix} \
--sysconfdir=/etc \
--localstatedir=/var \
--libdir=lib \
--sbindir=bin \
--buildtype=release \
-Ddefault_library=shared \
"$@"
}
checked_subst() {
tmpfile="$2".checked_subst
sed -z -E -e "$1" "$2" >"$tmpfile"
if cmp -s "$2" "$tmpfile"; then
rm -f "$2".checked_subst
if [ "$3" = no_die ]; then
return 1
else
die "*** substitution '$1' failed for file '$2'"
fi
fi
touch -r "$2" "$2".checked_subst
chmod --reference="$2" "$2".checked_subst
mv -f "$2".checked_subst "$2"
}
autotools_configure_noflags() {
if [ -z "${configure_script_path}" ]; then
configure_script_path="${source_dir}"
fi
"${configure_script_path}/configure" \
--host=${OS_TRIPLET} \
--with-sysroot=${sysroot_dir} \
--prefix=${prefix} \
--sysconfdir=/etc \
--localstatedir=/var \
--bindir=${prefix}/bin \
--sbindir=${prefix}/bin \
--libdir=${prefix}/lib \
--enable-shared \
--disable-static \
"$@"
}
autotools_configure() {
CFLAGS="$TARGET_CFLAGS" \
CXXFLAGS="$TARGET_CXXFLAGS" \
LDFLAGS="$TARGET_LDFLAGS" \
autotools_configure_noflags "$@"
}
autotools_recursive_regen() {
for f in $(grep -rl 'GNU config.sub ($timestamp)'); do
mv "$f" "$f".reference
cp -v ${base_dir}/build-support/config.sub "$f"
touch -r "$f".reference "$f"
rm -f "$f".reference
done
for f in $(grep -rl 'GNU config.guess ($timestamp)'); do
mv "$f" "$f".reference
cp -v ${base_dir}/build-support/config.guess "$f"
touch -r "$f".reference "$f"
rm -f "$f".reference
done
if ! [ -z "$(grep -rl "# No shared lib support for Linux oldld, aout, or coff.")" ]; then
if [ -z "$(grep -rl "dynamic_linker='mlibc ld.so'")" ]; then
echo "*** Missing libtool support for mlibc - trying to patch support ***"
for f in $(grep -rl "We cannot seem to hardcode it, guess we'll fake it."); do
if grep -q 'add_dir="\?-L$lt_sysroot$libdir"\?' "$f"; then
continue
fi
checked_subst 's/add_dir=(")?-L\$libdir(")?/add_dir=\1-L$lt_sysroot$libdir\1/g' "$f"
done
for f in $(grep -rl "# No shared lib support for Linux oldld, aout, or coff."); do
if grep -q 'AC_DEFUN(\[AC_PROG_LIBTOOL\]' "$f"; then
continue
fi
if grep -q 'ltconfig - Create a system-specific libtool' "$f"; then
continue
fi
checked_subst 's/(# This must be (glibc\/|Linux )?ELF.\nlinux\* \| k\*bsd\*-gnu \| kopensolaris\*-gnu( \| gnu\*)?( \| uclinuxfdpiceabi)?)(\)\n lt_cv_deplibs_check_method=pass_all)/\1 | *-mlibc\5/g' "$f"
checked_subst 's/(\)\n # FreeBSD uses GNU C)/ | *-mlibc\1/g' "$f" no_die || true
checked_subst 's/(lt_prog_compiler_static(_[^=]*)?='"'"'-non_shared'"'"'\n ;;)(\n\n linux\* \| k\*bsd\*-gnu \| kopensolaris\*-gnu( \| gnu\*)?\))/\1\n\n *-mlibc)\n lt_prog_compiler_wl\2='"'"'-Wl,'"'"'\n lt_prog_compiler_pic\2='"'"'-fPIC'"'"'\n lt_prog_compiler_static\2='"'"'-static'"'"'\n ;;\3/g' "$f"
checked_subst 's/( (haiku|interix\[3-9\])?\*\)\n (archive_cmds|hardcode_direct)?(_[^=]*)?=)/ *-mlibc)\n archive_cmds\4='"'"'$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'"'"'\n archive_expsym_cmds\4='"'"'$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'"'"'\n ;;\n\n\1/g' "$f"
checked_subst 's/(\)\n # FreeBSD 3 and later use GNU C)/ | *-mlibc\1/g' "$f" no_die || true
# putting this last to avoid a bug with determining whether the substitutions should be run or not.
checked_subst 's/(hardcode_into_libs=yes\n ;;\n\n)(# No shared lib support for Linux oldld, aout, or coff.)/\1*-mlibc)\n version_type=linux\n need_lib_prefix=no\n need_version=no\n library_names_spec='"'"'$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'"'"'\n soname_spec='"'"'$libname$release$shared_ext$major'"'"'\n dynamic_linker='"'"'mlibc ld.so'"'"'\n shlibpath_var=LD_LIBRARY_PATH\n shlibpath_overrides_runpath=no\n hardcode_into_libs=yes\n ;;\n\n\2/g' "$f"
done
fi
fi
}
cmake_configure() {
CFLAGS="$TARGET_CFLAGS" \
CXXFLAGS="$TARGET_CXXFLAGS" \
LDFLAGS="$TARGET_LDFLAGS" \
cmake_configure_noflags \
"$@"
}
cmake_configure_noflags() {
if [ -z "${cmake_source_dir}" ]; then
cmake_source_dir="${source_dir}"
fi
cmake "${cmake_source_dir}" \
-DCMAKE_MODULE_PATH="${base_dir}/build-support/cmake-host" \
-DCMAKE_TOOLCHAIN_FILE="${base_dir}/build-support/CMakeToolchain-${JINX_ARCH}.txt" \
-DCMAKE_INSTALL_PREFIX=${prefix} \
-DCMAKE_INSTALL_SYSCONFDIR=/etc \
-DCMAKE_INSTALL_LOCALSTATEDIR=/var \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_SBINDIR=bin \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=OFF \
-DENABLE_STATIC=OFF \
-DPKG_CONFIG_EXECUTABLE="/usr/local/bin/$OS_TRIPLET-pkg-config" \
-DCMAKE_COLOR_DIAGNOSTICS=ON \
-GNinja \
"$@"
}