1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-10 10:57:55 +03:00

[ELF] Allow the current directory to have a space in it

Fixes https://github.com/rui314/mold/issues/122
This commit is contained in:
Rui Ueyama 2021-10-19 20:39:47 +09:00
parent 5d910222bf
commit e28838031c

View File

@ -32,6 +32,6 @@ LDFLAGS="$LDFLAGS -Wl,-u,pthread_rwlock_rdlock"
LDFLAGS="$LDFLAGS -Wl,-u,pthread_rwlock_unlock"
LDFLAGS="$LDFLAGS -Wl,-u,pthread_rwlock_wrlock"
docker run -it --rm -v `pwd`:/mold -u $(id -u):$(id -g) \
docker run -it --rm -v "`pwd`:/mold" -u $(id -u):$(id -g) \
mold-build-ubuntu20 \
make -C /mold -j$(nproc) EXTRA_LDFLAGS="$LDFLAGS"