xref: /llvm-project/flang/test/Driver/misc-flags.f90 (revision 1561495cd128a641b9efcbb9d19d36e5a9c5e952)
1! Make sure that `-l` is "visible" to Flang's driver
2! RUN: %flang -lpgmath -### %s
3
4! Make sure that `-Wl` is "visible" to Flang's driver
5! RUN: %flang -Wl,abs -### %s
6
7! Make sure that `-fuse-ld' is "visible" to Flang's driver
8! RUN: %flang -fuse-ld= -### %s
9
10! Make sure that `-L' is "visible" to Flang's driver
11! RUN: %flang -L/ -### %s
12
13program hello
14  write(*,*), "Hello world!"
15end program hello
16