Support more socket connections on Windows (#644)
* rename and cleanup, add tiny-h-cjtag - rename and cleanup to arm-usb-ocd-h-cjtag file to be consistent - add copy of olimex-arm-jtag-cjtag.cfg as arm-usb-tiny-h-cjtag.cfg - did not remove olimex-arm-jtag-cjtag.cfg (should be deprecated) * lets try this... Revert "let's try this..." This reverts commit a9326e4493405356984e8681c577eb5bd476dd89. Tell Windows/winsock2 to use up to 128 sockets.
This commit is contained in:
parent
8bb47b6b1b
commit
41ffb2dee6
|
@ -31,14 +31,16 @@ DIST_SUBDIRS += jimtcl
|
|||
endif
|
||||
|
||||
# common flags used in openocd build
|
||||
AM_CFLAGS = $(GCC_WARNINGS)
|
||||
AM_CFLAGS = $(GCC_WARNINGS)\
|
||||
-DFD_SETSIZE=128
|
||||
|
||||
AM_CPPFLAGS = $(HOST_CPPFLAGS)\
|
||||
-I$(top_srcdir)/src \
|
||||
-I$(top_builddir)/src \
|
||||
-I$(top_srcdir)/src/helper \
|
||||
-DPKGDATADIR=\"$(pkgdatadir)\" \
|
||||
-DBINDIR=\"$(bindir)\"
|
||||
-DBINDIR=\"$(bindir)\"\
|
||||
-DFD_SETSIZE=128
|
||||
|
||||
if INTERNAL_JIMTCL
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/jimtcl \
|
||||
|
|
Loading…
Reference in New Issue