784d3b4766
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/gcc#26a9740f02970892dd1cccc47c31f7027345a28f
10 lines
239 B
Bash
Executable File
10 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
gcc -x c $(rpm --eval %build_cflags) data/hello.c -o hello_c.out
|
|
./hello_c.out | grep -q "Hello World"
|
|
|
|
g++ -x c++ $(rpm --eval %build_cxxflags) data/hello.cpp -o hello_cpp.out
|
|
./hello_cpp.out | grep -q "Hello World"
|