Skip to content
Merged
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
4 changes: 2 additions & 2 deletions compiler/scripts/fprime-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# ======================================================================
# Compile F Prime source files
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# Setup:
#
# 1. Set FPRIME to point to the root of your F Prime working repo
Expand Down Expand Up @@ -48,7 +48,7 @@ g++ --std=c++11 \
$os_flags \
-DTGT_OS_TYPE_$os_type \
-I $FPRIME \
-I $FPRIME/config \
-I $FPRIME/default \
-I $FPRIME/cmake/platform/types \
-I . \
$FPRIME_GCC_FLAGS \
Expand Down
4 changes: 2 additions & 2 deletions compiler/tools/fpp-to-cpp/test/component/compile_base_cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Compile base class C++ files with guards for conditional compilation
#
# By default, each file is compiled with three different sets of values of F
# Prime guards:
# Prime guards:
# - Default values as found in fprime/config/FpConfig.h
# - All guards turned on
# - All guards turned off (except FW_PORT_SERIALIZATION for components
Expand All @@ -29,7 +29,7 @@ done
fprime_gcc=../../../../../scripts/fprime-gcc

# Set compiler flags
include_flags="-I.. -I../.. -I../../fprime -I../../fprime/config"
include_flags="-I.. -I../.. -I../../fprime"
# F Prime components sometimes provide parameter arguments that are unused
# F Prime components use variable-length arrays for managing buffers
warning_flags="
Expand Down