There needs to be a way to configure the location for the installed mcs binary through an environment variable like swig does with SWIG_HOME. On my system (UBI 8 minimal image) it is located here because I built it from source:
[root@8de848fddea6 GMSEC_API]# which mcs
/usr/local/bin/mcs
The Makefile seems to assume the general install for mcs is based on the OS you are building for:
|
ifeq ($(findstring macosx,$(GMSEC_PLATFORM)), macosx) |
|
MCS = /usr/local/bin/mcs |
|
else |
|
MCS = /usr/bin/mcs |
|
endif |
There needs to be a way to configure the location for the installed mcs binary through an environment variable like swig does with
SWIG_HOME. On my system (UBI 8 minimal image) it is located here because I built it from source:The
Makefileseems to assume the general install for mcs is based on the OS you are building for:GMSEC_API/csharp/gmsec5/Makefile
Lines 14 to 18 in ac7d45e