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
Problem: We are building for both Linux and Windows. When TIRPC is YES, testGpibApp fails to build on Windows. When TIRPC is not set, asyn fails to build on Linux (due to missing rpc.h).
@hanak can you open a PR changing testGpibApp to use the _Linux suffix? That seems like the most reasonable fix, and might have been missed back when TIRPC support was first added.
@MarkRivers Thank you. Still, there is a difference between "asyn" Makefile and "testBpibApp" Makefile which causes different behavior while compiling on Windows. I can make it disappear by using CONFIG_SITE dedicated to a specific OS. Yet, is this meant to be like this?
Problem: We are building for both Linux and Windows. When TIRPC is YES, testGpibApp fails to build on Windows. When TIRPC is not set, asyn fails to build on Linux (due to missing rpc.h).
Cause: While "asyn" Makefile states:
"testGpibApp" Makefile states:
Since the suffix
_Linux
is missing, the setting applies to all OS.Workaround: Set
USR_INCLUDES_Linux
,asyn_SYS_LIBS_Linux
, andtestGpib_SYS_LIBS_Linux
inCONFIG_SITE
instead ofTIRPC
.The text was updated successfully, but these errors were encountered: