@pact-foundation/pact-core 13.4.1-beta.11 → 13.4.1-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Makefile +5 -5
- package/build/gyp-mac-tool +464 -626
- package/build/pact.target.mk +20 -18
- package/build/set_osx_install_name.target.mk +1 -2
- package/ffi/libpact_ffi.dylib +0 -0
- package/ffi/libpact_ffi.so +0 -0
- package/ffi/osxaarch64/libpact_ffi.dylib +0 -0
- package/ffi/pact.h +57 -12
- package/ffi/pact_ffi.dll +0 -0
- package/ffi/pact_ffi.dll.lib +0 -0
- package/package.json +1 -1
- package/src/consumer/__testoutput__/foo-consumer-bar-provider.json +169 -3
- package/src/ffi/index.d.ts +1 -1
- package/src/ffi/index.js +1 -1
- package/src/ffi/internals/types.d.ts +0 -23
- package/src/ffi/internals/types.js +0 -3
- package/src/ffi/internals/types.js.map +0 -1
package/build/Makefile
CHANGED
|
@@ -121,10 +121,10 @@ endef
|
|
|
121
121
|
# - quiet_cmd_foo is the brief-output summary of the command.
|
|
122
122
|
|
|
123
123
|
quiet_cmd_cc = CC($(TOOLSET)) $@
|
|
124
|
-
cmd_cc = $(CC.$(TOOLSET))
|
|
124
|
+
cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $<
|
|
125
125
|
|
|
126
126
|
quiet_cmd_cxx = CXX($(TOOLSET)) $@
|
|
127
|
-
cmd_cxx = $(CXX.$(TOOLSET))
|
|
127
|
+
cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
|
|
128
128
|
|
|
129
129
|
quiet_cmd_objc = CXX($(TOOLSET)) $@
|
|
130
130
|
cmd_objc = $(CC.$(TOOLSET)) $(GYP_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
|
|
@@ -159,7 +159,7 @@ cmd_touch = touch $@
|
|
|
159
159
|
|
|
160
160
|
quiet_cmd_copy = COPY $@
|
|
161
161
|
# send stderr to /dev/null to ignore messages when linking directories.
|
|
162
|
-
cmd_copy =
|
|
162
|
+
cmd_copy = rm -rf "$@" && cp -af "$<" "$@"
|
|
163
163
|
|
|
164
164
|
quiet_cmd_alink = LIBTOOL-STATIC $@
|
|
165
165
|
cmd_alink = rm -f $@ && ./gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
|
|
@@ -336,8 +336,8 @@ ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
|
|
336
336
|
endif
|
|
337
337
|
|
|
338
338
|
quiet_cmd_regen_makefile = ACTION Regenerating $@
|
|
339
|
-
cmd_regen_makefile = cd $(srcdir); /Users/matthewfellows/.nvm/versions/node/
|
|
340
|
-
Makefile: $(srcdir)/../../../Library/Caches/node-gyp/
|
|
339
|
+
cmd_regen_makefile = cd $(srcdir); /Users/matthewfellows/.nvm/versions/node/v12.18.0/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/matthewfellows/Library/Caches/node-gyp/12.18.0" "-Dnode_gyp_dir=/Users/matthewfellows/.nvm/versions/node/v12.18.0/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/Users/matthewfellows/Library/Caches/node-gyp/12.18.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/Users/matthewfellows/development/public/pact-js-core" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/Users/matthewfellows/development/public/pact-js-core/build/config.gypi -I/Users/matthewfellows/.nvm/versions/node/v12.18.0/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/Users/matthewfellows/Library/Caches/node-gyp/12.18.0/include/node/common.gypi "--toplevel-dir=." binding.gyp
|
|
340
|
+
Makefile: $(srcdir)/../../../Library/Caches/node-gyp/12.18.0/include/node/common.gypi $(srcdir)/../../../.nvm/versions/node/v12.18.0/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/binding.gyp $(srcdir)/build/config.gypi
|
|
341
341
|
$(call do_cmd,regen_makefile)
|
|
342
342
|
|
|
343
343
|
# "all" is a concatenation of the "all" targets from all the included
|