mz-automation / libiec61850

Official repository for libIEC61850, the open-source library for the IEC 61850 protocols
http://libiec61850.com/libiec61850
GNU General Public License v3.0
878 stars 468 forks source link

dynamic library name for win64 #129

Closed paluke closed 5 years ago

paluke commented 5 years ago

'make dynlib' for win32 target creates iec61850.dll file, but for win64 same command creates libiec61850.so patch for make/target_system.mk:

--- make/target_system.mk (revision 1895) +++ make/target_system.mk (working copy) @@ -167,7 +167,7 @@ LDFLAGS += -arch i386 endif

-ifeq ($(TARGET), WIN32) +ifdef WINDOWS DYN_LIB_NAME = $(LIB_OBJS_DIR)/iec61850.dll else

mzillgith commented 5 years ago

Thanks. I added your patch.