f14ea70dac
Resolves: rhbz#2022522
25 lines
473 B
RPMSpec
25 lines
473 B
RPMSpec
Name: brp-llvm-compile-lto-elf-test
|
|
Version: 1
|
|
Release: 1
|
|
Summary: Library package for testing brp-llvm-compile-lto-elf
|
|
License: MIT
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: brp-llvm-compile-lto-elf-test-lib
|
|
|
|
Source0: %{name}.c
|
|
|
|
# FIXME: I'm not sure why this doesn't work
|
|
%undefine _package_note_file
|
|
|
|
|
|
%description
|
|
%{summary}
|
|
|
|
%build
|
|
gcc ${CFLAGS} -c %{SOURCE0} -o %{name}.o
|
|
gcc ${LDFLAGS} %{name}.o %{_libdir}/%{name}-lib.a -o %{name}
|
|
|
|
%check
|
|
./%{name} | grep "Hello, world!"
|