Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/mission_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function(prepare)
)

# Generate the tools for the native (host) arch
add_subdirectory(${MISSION_SOURCE_DIR}/tools tools)
add_subdirectory(${MISSION_SOURCE_DIR}/tools ${MISSION_BINARY_DIR}/tools)

# Add a dependency on the table generator tool as this is required for table builds
# The "elf2cfetbl" target should have been added by the "tools" above
Expand Down
1 change: 1 addition & 0 deletions cmake/target/src/target_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
#ifndef CFE_SPACECRAFT_ID_VALUE
#define CFE_SPACECRAFT_ID_VALUE 0x42
#endif
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"


Target_CfeConfigData GLOBAL_CFE_CONFIGDATA =
Expand Down
1 change: 1 addition & 0 deletions fsw/cfe-core/src/es/cfe_es_perf.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include "cfe_psp.h"
#include <string.h>

#pragma GCC diagnostic ignored "-Wtype-limits"

/*
** Pointer to performance log in the reset area
Expand Down
2 changes: 2 additions & 0 deletions fsw/cfe-core/src/fs/cfe_fs_decompress.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
** Includes
*/
#include "cfe_fs_decompress.h"
#pragma GCC diagnostic ignored "-Wtype-limits"


#ifndef CFE_OMIT_DEPRECATED_6_7 /* Entire file will be removed in major release */

Expand Down
1 change: 1 addition & 0 deletions fsw/cfe-core/unit-test/sb_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
** Includes
*/
#include "sb_UT.h"
#pragma GCC diagnostic ignored "-Wshadow"

/*
* A method to add an SB "Subtest"
Expand Down