mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 22:00:10 -05:00
5cef3c61fc
-- Update test suite so that CMake can use multiple toolsets
CMake_TEST_GreenHillsMULTI_config
ghs_config_name
ghs_target_arch
ghs_tools
ghs_toolset_name
ghs_os_root
ghs_os_dir
ghs_target_platform
ghs_bsp_name
-- Change ARM Integrity test to generic Integrity test
Add Monolithic build test
-- Add other GHS generator tests
12 lines
247 B
C
12 lines
247 B
C
extern int func2a(void);
|
|
extern int func3a(void);
|
|
extern int func4a(void);
|
|
extern int func5a(void);
|
|
extern int func6a(void);
|
|
extern int func7a(void);
|
|
|
|
int funcOBJ(void)
|
|
{
|
|
return func2a() + func3a() + func4a() + func5a() + func6a() + func7a();
|
|
}
|