Add Travis CI jobs for Arm and AArch64 (#638)

* Add Travis CI jobs for Arm and AArch64

- Use fixed Linaro toolchains
- Move travis script to a shell file

Signed-off-by: Kevin Petit <kevin.petit@arm.com>

* Fix Arm build and string comparisons added under #637

* Remove verbose flag on tar command
This commit is contained in:
Kévin Petit
2020-03-04 15:18:16 +00:00
committed by GitHub
parent 5e1dbfc49d
commit 58eb2373a8
4 changed files with 79 additions and 25 deletions

View File

@@ -13,7 +13,7 @@ set (${MODULE_NAME}_SOURCES
Sleep.cpp test_conversions.cpp basic_test_conversions.cpp
)
if(CMAKE_COMPILER_IS_GNUCC AND ${CLConform_TARGET_ARCH} EQUAL "ARM")
if(CMAKE_COMPILER_IS_GNUCXX AND "${CLConform_TARGET_ARCH}" STREQUAL "ARM")
list(APPEND ${MODULE_NAME}_SOURCES fplib.cpp)
endif()