Files
clang-p2996/flang/test/Driver/misc-flags.f90
Hao Jin 1561495cd1 [flang][driver] Mark -L as visible in Flang
Reviewed By: awarzynski

Differential Revision: https://reviews.llvm.org/D158763
2023-08-25 13:01:49 -04:00

16 lines
403 B
Fortran

! Make sure that `-l` is "visible" to Flang's driver
! RUN: %flang -lpgmath -### %s
! Make sure that `-Wl` is "visible" to Flang's driver
! RUN: %flang -Wl,abs -### %s
! Make sure that `-fuse-ld' is "visible" to Flang's driver
! RUN: %flang -fuse-ld= -### %s
! Make sure that `-L' is "visible" to Flang's driver
! RUN: %flang -L/ -### %s
program hello
write(*,*), "Hello world!"
end program hello