1
0
Fork 0

[A] Added basic builds to freebsd

This commit is contained in:
seleznevae 2019-01-12 15:52:48 +03:00
parent a2c245df4f
commit 308ca2a210
1 changed files with 13 additions and 4 deletions

View File

@ -6,8 +6,17 @@ main_task:
- echo "Hello cirrus"
- ls
- yes | pkg install cmake
- which cmake
- which cc
- which c++
- cc --version
- c++ --version
- c++ --version
# Basic c build
- cd lib
- cc -Wall -Wextra -Werror --std=gnu89 -DFT_CONGIG_HAVE_WCHAR fort.c -c -o fort.o
- rm fort.o
- cd ..
# Basic c++ build
- cd lib
- c++ -Wall -Wextra -Werror fort.c -c -o fort.o
- rm fort.o
- cd ..