mirror of
https://abf.rosa.ru/djam/mapper.git
synced 2025-02-23 13:32:53 +00:00
6 lines
131 B
Bash
6 lines
131 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
linker_flags="$(echo "$@" | tr ' ' '\n' | grep '^\-l' | tr '\n' ' ')"
|
||
|
|
||
|
/usr/bin/clang++ "$@" $LIBCCX_LIBS $linker_flags
|