mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-05-21 12:58:14 +02:00
Make sure that all the flag types are covered so that the ordering between them is being tested. https://bugs.freedesktop.org/show_bug.cgi?id=97337
11 lines
294 B
Bash
Executable file
11 lines
294 B
Bash
Executable file
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/common
|
|
|
|
RESULT="-g -isystem /system1 -idirafter /after1 -ffoo -idirafter /after2 -isystem /system2 -I/foo -I/bar"
|
|
run_test --cflags special-flags
|
|
|
|
RESULT="-L/foo -L/bar -framework Foo -lsimple -framework Bar -Wl,-framework -Wl,Baz"
|
|
run_test --libs special-flags
|