Skip to content

Commit c54fb2a

Browse files
remove bad check that was preventing musl headers from being installed,
breaking the build of libcxxabi.
1 parent 2c3f2b9 commit c54fb2a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ bootstrap_compiler_rt
186186
./kernel.sh
187187
./musl.sh
188188
build_libunwind
189-
#build_libcxxabi
189+
build_libcxxabi
190190
#TODO: this doesn't work yet
191191
#build_libcxx
192192

musl.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ function get_or_fetch_musl () {
2323

2424
function build_musl () {
2525
# TODO: something better than this...like if we updated musl.
26-
if [[ -d sysroot/usr/local/include ]]; then
27-
if [[ -n "$(find sysroot/usr/local/include -type f | wc -l)" ]]; then
28-
return
29-
fi;
30-
fi;
26+
#if [[ -d sysroot/usr/local/include ]]; then
27+
#if [[ -n "$(find sysroot/usr/local/include -type f | wc -l)" ]]; then
28+
#return
29+
#fi;
30+
#fi;
3131

3232
BUILTINS=$(readlink -f sysroot/usr/local/lib/linux/libclang_rt.builtins-x86_64.a)
3333
CC=$(which clang)

0 commit comments

Comments
 (0)