739ce79e21
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
14 lines
308 B
Bash
Executable File
14 lines
308 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/common
|
|
|
|
RESULT="-I/non-l/include -I/non-l-required/include"
|
|
run_test --cflags non-l-required non-l
|
|
run_test --cflags --static non-l-required non-l
|
|
|
|
RESULT="/non-l.a /non-l-required.a -pthread"
|
|
run_test --libs non-l-required non-l
|
|
run_test --libs --static non-l-required non-l
|