Closed Tomaqa closed 4 weeks ago
We require that the linkage of the produced binary contains no dynamic libraries. For that, we use the exit status of ldd (since it is Linux), which fails if no dynamic libraries are present. Hence we negate the exit status with !.
ldd
!
We require that the linkage of the produced binary contains no dynamic libraries. For that, we use the exit status of
ldd
(since it is Linux), which fails if no dynamic libraries are present. Hence we negate the exit status with!
.