You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Observed that hal_test binary is not created while building ut when the command is ./build.sh TARGET=linux or make TARGET=linux. However same works fine w/o TARGET=linux.
ifeq ($(TARGET),)
$(info TARGET NOT SET )$(info TARGET FORCED TO Linux)
TARGET=linux
SRC_DIRS += $(ROOT_DIR)/skeletons/src
endif
This part of the code runs only when TARGET is empty and sets the SRC_DIRS. However when TARGET=linux, SRC_DIRS is not set and hence the error. build.sh TARGET=linux.pdf
The text was updated successfully, but these errors were encountered:
Observed that hal_test binary is not created while building ut when the command is ./build.sh TARGET=linux or make TARGET=linux. However same works fine w/o TARGET=linux.
The issue is in makefile:(https://github.com/rdkcentral/rdk-halif-test-device_settings/blob/main/Makefile#L32)
This part of the code runs only when TARGET is empty and sets the SRC_DIRS. However when TARGET=linux, SRC_DIRS is not set and hence the error.
build.sh TARGET=linux.pdf
The text was updated successfully, but these errors were encountered: