usb 2.1.3 → 2.3.1
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/CHANGELOG.md +23 -0
- package/README.md +19 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/usb/bindings.d.ts +4 -0
- package/dist/usb/device.js +5 -0
- package/dist/usb/device.js.map +1 -1
- package/dist/usb/index.js +7 -16
- package/dist/usb/index.js.map +1 -1
- package/dist/webusb/webusb-device.d.ts +0 -1
- package/dist/webusb/webusb-device.js +149 -243
- package/dist/webusb/webusb-device.js.map +1 -1
- package/libusb/.gitattributes +2 -6
- package/libusb/.private/appveyor_build.sh +22 -0
- package/libusb/.private/bm.sh +1 -1
- package/libusb/.private/ci-build.sh +67 -0
- package/libusb/.private/ci-container-build.sh +70 -0
- package/libusb/.private/post-rewrite.sh +5 -1
- package/libusb/.private/pre-commit.sh +5 -1
- package/libusb/.private/wbs.txt +4 -19
- package/libusb/.travis.yml +32 -23
- package/libusb/AUTHORS +86 -3
- package/libusb/ChangeLog +54 -3
- package/libusb/INSTALL_WIN.txt +22 -44
- package/libusb/Makefile.am +32 -10
- package/libusb/{README.md → README} +2 -2
- package/libusb/README.git +3 -3
- package/libusb/Xcode/common.xcconfig +23 -19
- package/libusb/Xcode/config.h +25 -13
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +511 -109
- package/libusb/android/README +90 -54
- package/libusb/android/config.h +23 -43
- package/libusb/android/examples/unrooted_android.c +300 -0
- package/libusb/android/examples/unrooted_android.h +36 -0
- package/libusb/android/jni/Android.mk +1 -1
- package/libusb/android/jni/Application.mk +16 -0
- package/libusb/android/jni/examples.mk +63 -29
- package/libusb/android/jni/libusb.mk +14 -8
- package/libusb/android/jni/tests.mk +13 -24
- package/libusb/appveyor.yml +73 -30
- package/libusb/autogen.sh +5 -3
- package/libusb/bootstrap.sh +6 -2
- package/libusb/configure.ac +314 -227
- package/libusb/doc/Makefile.in +22 -0
- package/libusb/doc/doxygen.cfg.in +460 -223
- package/libusb/examples/Makefile.am +6 -13
- package/libusb/examples/dpfp.c +276 -73
- package/libusb/examples/ezusb.c +18 -8
- package/libusb/examples/ezusb.h +6 -17
- package/libusb/examples/fxload.c +4 -5
- package/libusb/examples/hotplugtest.c +1 -1
- package/libusb/examples/sam3u_benchmark.c +59 -24
- package/libusb/examples/testlibusb.c +138 -104
- package/libusb/examples/xusb.c +26 -22
- package/libusb/libusb/Makefile.am +57 -70
- package/libusb/libusb/Makefile.am.extra +26 -0
- package/libusb/libusb/core.c +432 -423
- package/libusb/libusb/descriptor.c +365 -419
- package/libusb/libusb/hotplug.c +200 -104
- package/libusb/libusb/io.c +522 -535
- package/libusb/libusb/libusb-1.0.def +7 -3
- package/libusb/libusb/libusb-1.0.rc +1 -9
- package/libusb/libusb/libusb.h +302 -226
- package/libusb/libusb/libusbi.h +607 -316
- package/libusb/libusb/os/darwin_usb.c +703 -329
- package/libusb/libusb/os/darwin_usb.h +39 -15
- package/libusb/libusb/os/events_posix.c +300 -0
- package/libusb/libusb/os/events_posix.h +59 -0
- package/libusb/libusb/os/events_windows.c +214 -0
- package/libusb/{msvc/missing.h → libusb/os/events_windows.h} +25 -11
- package/libusb/libusb/os/haiku_pollfs.cpp +14 -9
- package/libusb/libusb/os/haiku_usb.h +12 -12
- package/libusb/libusb/os/haiku_usb_backend.cpp +36 -37
- package/libusb/libusb/os/haiku_usb_raw.cpp +80 -116
- package/libusb/libusb/os/linux_netlink.c +55 -63
- package/libusb/libusb/os/linux_udev.c +61 -69
- package/libusb/libusb/os/linux_usbfs.c +926 -1015
- package/libusb/libusb/os/linux_usbfs.h +74 -57
- package/libusb/libusb/os/netbsd_usb.c +103 -168
- package/libusb/libusb/os/null_usb.c +111 -0
- package/libusb/libusb/os/openbsd_usb.c +71 -120
- package/libusb/libusb/os/sunos_usb.c +289 -375
- package/libusb/libusb/os/sunos_usb.h +0 -1
- package/libusb/libusb/os/threads_posix.c +81 -32
- package/libusb/libusb/os/threads_posix.h +19 -23
- package/libusb/libusb/os/threads_windows.c +9 -95
- package/libusb/libusb/os/threads_windows.h +33 -31
- package/libusb/libusb/os/windows_common.c +915 -0
- package/libusb/libusb/os/windows_common.h +330 -42
- package/libusb/libusb/os/windows_usbdk.c +161 -267
- package/libusb/libusb/os/windows_usbdk.h +5 -2
- package/libusb/libusb/os/windows_winusb.c +1355 -1192
- package/libusb/libusb/os/windows_winusb.h +167 -167
- package/libusb/libusb/strerror.c +20 -30
- package/libusb/libusb/sync.c +20 -21
- package/libusb/libusb/version.h +1 -1
- package/libusb/libusb/version_nano.h +1 -1
- package/libusb/msvc/.gitattributes +3 -0
- package/libusb/msvc/config.h +27 -20
- package/libusb/msvc/{hotplugtest_2012.vcxproj → dpfp_2013.vcxproj} +14 -10
- package/libusb/msvc/dpfp_2013.vcxproj.filters +26 -0
- package/libusb/msvc/{hotplugtest_2010.vcxproj → dpfp_2015.vcxproj} +14 -9
- package/libusb/msvc/dpfp_2015.vcxproj.filters +26 -0
- package/libusb/msvc/dpfp_2017.vcxproj +106 -0
- package/libusb/msvc/dpfp_2017.vcxproj.filters +26 -0
- package/libusb/msvc/dpfp_2019.vcxproj +106 -0
- package/libusb/msvc/dpfp_2019.vcxproj.filters +26 -0
- package/libusb/msvc/dpfp_threaded_2013.vcxproj +87 -0
- package/libusb/msvc/dpfp_threaded_2013.vcxproj.filters +26 -0
- package/libusb/msvc/dpfp_threaded_2015.vcxproj +87 -0
- package/libusb/msvc/dpfp_threaded_2015.vcxproj.filters +26 -0
- package/libusb/msvc/dpfp_threaded_2017.vcxproj +106 -0
- package/libusb/msvc/dpfp_threaded_2017.vcxproj.filters +26 -0
- package/libusb/msvc/{fxload_2012.vcxproj → dpfp_threaded_2019.vcxproj} +32 -17
- package/libusb/msvc/dpfp_threaded_2019.vcxproj.filters +26 -0
- package/libusb/msvc/fxload_2013.vcxproj +6 -3
- package/libusb/msvc/fxload_2013.vcxproj.filters +35 -0
- package/libusb/msvc/fxload_2015.vcxproj +6 -3
- package/libusb/msvc/fxload_2015.vcxproj.filters +35 -0
- package/libusb/msvc/fxload_2017.vcxproj +6 -7
- package/libusb/msvc/fxload_2017.vcxproj.filters +35 -0
- package/libusb/msvc/{fxload_2010.vcxproj → fxload_2019.vcxproj} +29 -6
- package/libusb/msvc/fxload_2019.vcxproj.filters +35 -0
- package/libusb/{examples → msvc}/getopt/getopt.c +0 -0
- package/libusb/{examples → msvc}/getopt/getopt.h +0 -0
- package/libusb/{examples → msvc}/getopt/getopt1.c +0 -0
- package/libusb/msvc/getopt_2013.vcxproj +4 -5
- package/libusb/msvc/getopt_2013.vcxproj.filters +26 -0
- package/libusb/msvc/getopt_2015.vcxproj +4 -4
- package/libusb/msvc/getopt_2015.vcxproj.filters +26 -0
- package/libusb/msvc/getopt_2017.vcxproj +4 -10
- package/libusb/msvc/getopt_2017.vcxproj.filters +26 -0
- package/libusb/msvc/{getopt_2010.vcxproj → getopt_2019.vcxproj} +25 -5
- package/libusb/msvc/getopt_2019.vcxproj.filters +26 -0
- package/libusb/msvc/hotplugtest_2013.vcxproj +6 -3
- package/libusb/msvc/hotplugtest_2013.vcxproj.filters +23 -0
- package/libusb/msvc/hotplugtest_2015.vcxproj +6 -3
- package/libusb/msvc/hotplugtest_2015.vcxproj.filters +23 -0
- package/libusb/msvc/hotplugtest_2017.vcxproj +6 -7
- package/libusb/msvc/hotplugtest_2017.vcxproj.filters +23 -0
- package/libusb/msvc/hotplugtest_2019.vcxproj +105 -0
- package/libusb/msvc/hotplugtest_2019.vcxproj.filters +23 -0
- package/libusb/msvc/libusb_2013.sln +50 -20
- package/libusb/msvc/libusb_2015.sln +51 -21
- package/libusb/msvc/libusb_2017.sln +90 -36
- package/libusb/msvc/libusb_2019.sln +240 -0
- package/libusb/msvc/libusb_dll_2013.vcxproj +6 -9
- package/libusb/msvc/libusb_dll_2013.vcxproj.filters +94 -0
- package/libusb/msvc/libusb_dll_2015.vcxproj +6 -8
- package/libusb/msvc/libusb_dll_2015.vcxproj.filters +94 -0
- package/libusb/msvc/libusb_dll_2017.vcxproj +6 -16
- package/libusb/msvc/libusb_dll_2017.vcxproj.filters +94 -0
- package/libusb/msvc/{libusb_dll_2010.vcxproj → libusb_dll_2019.vcxproj} +27 -9
- package/libusb/msvc/libusb_dll_2019.vcxproj.filters +94 -0
- package/libusb/msvc/libusb_static_2013.vcxproj +5 -9
- package/libusb/msvc/libusb_static_2013.vcxproj.filters +80 -0
- package/libusb/msvc/libusb_static_2015.vcxproj +5 -8
- package/libusb/msvc/libusb_static_2015.vcxproj.filters +80 -0
- package/libusb/msvc/libusb_static_2017.vcxproj +5 -8
- package/libusb/msvc/libusb_static_2017.vcxproj.filters +80 -0
- package/libusb/msvc/{libusb_static_2010.vcxproj → libusb_static_2019.vcxproj} +26 -9
- package/libusb/msvc/libusb_static_2019.vcxproj.filters +80 -0
- package/libusb/msvc/listdevs_2013.vcxproj +6 -3
- package/libusb/msvc/listdevs_2013.vcxproj.filters +23 -0
- package/libusb/msvc/listdevs_2015.vcxproj +6 -3
- package/libusb/msvc/listdevs_2015.vcxproj.filters +23 -0
- package/libusb/msvc/listdevs_2017.vcxproj +6 -7
- package/libusb/msvc/listdevs_2017.vcxproj.filters +23 -0
- package/libusb/msvc/listdevs_2019.vcxproj +105 -0
- package/libusb/msvc/listdevs_2019.vcxproj.filters +23 -0
- package/libusb/msvc/{listdevs_2010.vcxproj → sam3u_benchmark_2013.vcxproj} +13 -8
- package/libusb/msvc/sam3u_benchmark_2013.vcxproj.filters +26 -0
- package/libusb/msvc/{listdevs_2012.vcxproj → sam3u_benchmark_2015.vcxproj} +13 -9
- package/libusb/msvc/sam3u_benchmark_2015.vcxproj.filters +26 -0
- package/libusb/msvc/sam3u_benchmark_2017.vcxproj +106 -0
- package/libusb/msvc/sam3u_benchmark_2017.vcxproj.filters +26 -0
- package/libusb/msvc/sam3u_benchmark_2019.vcxproj +106 -0
- package/libusb/msvc/sam3u_benchmark_2019.vcxproj.filters +26 -0
- package/libusb/msvc/stress_2013.vcxproj +4 -2
- package/libusb/msvc/stress_2013.vcxproj.filters +32 -0
- package/libusb/msvc/stress_2015.vcxproj +4 -2
- package/libusb/msvc/stress_2015.vcxproj.filters +32 -0
- package/libusb/msvc/stress_2017.vcxproj +4 -6
- package/libusb/msvc/stress_2017.vcxproj.filters +32 -0
- package/libusb/msvc/{stress_2010.vcxproj → stress_2019.vcxproj} +26 -4
- package/libusb/msvc/stress_2019.vcxproj.filters +32 -0
- package/libusb/msvc/testlibusb_2013.vcxproj +6 -3
- package/libusb/msvc/testlibusb_2013.vcxproj.filters +23 -0
- package/libusb/msvc/testlibusb_2015.vcxproj +6 -3
- package/libusb/msvc/testlibusb_2015.vcxproj.filters +23 -0
- package/libusb/msvc/testlibusb_2017.vcxproj +6 -7
- package/libusb/msvc/testlibusb_2017.vcxproj.filters +23 -0
- package/libusb/msvc/{testlibusb_2010.vcxproj → testlibusb_2019.vcxproj} +28 -5
- package/libusb/msvc/testlibusb_2019.vcxproj.filters +23 -0
- package/libusb/msvc/xusb_2013.vcxproj +6 -3
- package/libusb/msvc/xusb_2013.vcxproj.filters +23 -0
- package/libusb/msvc/xusb_2015.vcxproj +6 -3
- package/libusb/msvc/xusb_2015.vcxproj.filters +23 -0
- package/libusb/msvc/xusb_2017.vcxproj +6 -7
- package/libusb/msvc/xusb_2017.vcxproj.filters +23 -0
- package/libusb/msvc/{xusb_2010.vcxproj → xusb_2019.vcxproj} +28 -5
- package/libusb/msvc/xusb_2019.vcxproj.filters +23 -0
- package/libusb/tests/Makefile.am +13 -1
- package/libusb/tests/libusb_testlib.h +12 -43
- package/libusb/tests/stress.c +59 -50
- package/libusb/tests/testlib.c +78 -171
- package/libusb/tests/umockdev.c +1175 -0
- package/libusb.gypi +10 -11
- package/package.json +1 -1
- package/prebuilds/android-arm/node.napi.armv7.node +0 -0
- package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
- package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/linux-ia32/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/prebuilds/win32-ia32/node.napi.node +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/src/device.cc +12 -7
- package/src/node_usb.cc +10 -0
- package/test/usb.coffee +6 -0
- package/tsc/index.ts +2 -0
- package/tsc/usb/bindings.ts +5 -0
- package/tsc/usb/device.ts +6 -0
- package/tsc/usb/index.ts +5 -8
- package/tsc/webusb/webusb-device.ts +67 -124
- package/dist/webusb/mutex.d.ts +0 -22
- package/dist/webusb/mutex.js +0 -89
- package/dist/webusb/mutex.js.map +0 -1
- package/libusb/.private/bd.cmd +0 -89
- package/libusb/.private/bwince.cmd +0 -57
- package/libusb/.private/wbs_wince.txt +0 -42
- package/libusb/Brewfile +0 -4
- package/libusb/appveyor_cygwin.bat +0 -11
- package/libusb/appveyor_minGW.bat +0 -19
- package/libusb/doc/Makefile.am +0 -9
- package/libusb/examples/dpfp_threaded.c +0 -557
- package/libusb/libusb/hotplug.h +0 -99
- package/libusb/libusb/os/poll_posix.c +0 -84
- package/libusb/libusb/os/poll_posix.h +0 -14
- package/libusb/libusb/os/poll_windows.c +0 -447
- package/libusb/libusb/os/poll_windows.h +0 -98
- package/libusb/libusb/os/wince_usb.c +0 -888
- package/libusb/libusb/os/wince_usb.h +0 -126
- package/libusb/libusb/os/windows_nt_common.c +0 -1010
- package/libusb/libusb/os/windows_nt_common.h +0 -110
- package/libusb/libusb/os/windows_nt_shared_types.h +0 -147
- package/libusb/msvc/appveyor.bat +0 -27
- package/libusb/msvc/ddk_build.cmd +0 -219
- package/libusb/msvc/errno.h +0 -102
- package/libusb/msvc/fxload_sources +0 -23
- package/libusb/msvc/getopt_2005.vcproj +0 -288
- package/libusb/msvc/getopt_2012.vcxproj +0 -73
- package/libusb/msvc/getopt_sources +0 -24
- package/libusb/msvc/hotplugtest_sources +0 -20
- package/libusb/msvc/inttypes.h +0 -295
- package/libusb/msvc/libusb.dsw +0 -71
- package/libusb/msvc/libusb_2005.sln +0 -95
- package/libusb/msvc/libusb_2010.sln +0 -105
- package/libusb/msvc/libusb_2012.sln +0 -105
- package/libusb/msvc/libusb_dll.dsp +0 -194
- package/libusb/msvc/libusb_dll_2005.vcproj +0 -464
- package/libusb/msvc/libusb_dll_2012.vcxproj +0 -107
- package/libusb/msvc/libusb_dll_wince.vcproj +0 -1251
- package/libusb/msvc/libusb_sources +0 -43
- package/libusb/msvc/libusb_static.dsp +0 -174
- package/libusb/msvc/libusb_static_2005.vcproj +0 -390
- package/libusb/msvc/libusb_static_2012.vcxproj +0 -98
- package/libusb/msvc/libusb_static_wince.vcproj +0 -1179
- package/libusb/msvc/libusb_wince.sln +0 -246
- package/libusb/msvc/listdevs.dsp +0 -103
- package/libusb/msvc/listdevs_2005.vcproj +0 -360
- package/libusb/msvc/listdevs_sources +0 -20
- package/libusb/msvc/listdevs_wince.vcproj +0 -1120
- package/libusb/msvc/missing.c +0 -80
- package/libusb/msvc/stdint.h +0 -256
- package/libusb/msvc/stress_2005.vcproj +0 -390
- package/libusb/msvc/stress_2012.vcxproj +0 -87
- package/libusb/msvc/stress_sources +0 -21
- package/libusb/msvc/stress_wince.vcproj +0 -1128
- package/libusb/msvc/testlibusb_2012.vcxproj +0 -83
- package/libusb/msvc/testlibusb_sources +0 -20
- package/libusb/msvc/xusb.dsp +0 -102
- package/libusb/msvc/xusb_2005.vcproj +0 -344
- package/libusb/msvc/xusb_2012.vcxproj +0 -83
- package/libusb/msvc/xusb_sources +0 -20
- package/libusb/msvc/xusb_wince.vcproj +0 -1120
- package/libusb/travis-autogen.sh +0 -39
- package/tsc/webusb/mutex.ts +0 -38
|
@@ -13,13 +13,16 @@
|
|
|
13
13
|
buildPhases = (
|
|
14
14
|
);
|
|
15
15
|
dependencies = (
|
|
16
|
-
006AD4281C8C5BBC007F8C6A /* PBXTargetDependency */,
|
|
17
16
|
008FC0371628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
18
|
-
008FC0391628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
19
17
|
008FC03B1628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
20
18
|
008FC03D1628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
21
19
|
008FC03F1628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
20
|
+
006AD4281C8C5BBC007F8C6A /* PBXTargetDependency */,
|
|
22
21
|
008FC0411628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
22
|
+
20468D8E24329E3800650534 /* PBXTargetDependency */,
|
|
23
|
+
008A23DE236C8619004854AA /* PBXTargetDependency */,
|
|
24
|
+
20468D9024329E3F00650534 /* PBXTargetDependency */,
|
|
25
|
+
008FC0391628BC9A00BC5BE2 /* PBXTargetDependency */,
|
|
23
26
|
);
|
|
24
27
|
name = all;
|
|
25
28
|
productName = all;
|
|
@@ -27,17 +30,17 @@
|
|
|
27
30
|
/* End PBXAggregateTarget section */
|
|
28
31
|
|
|
29
32
|
/* Begin PBXBuildFile section */
|
|
30
|
-
006AD4241C8C5AAE007F8C6A /* hotplugtest.c in Sources */ = {isa = PBXBuildFile; fileRef = 006AD4231C8C5AAE007F8C6A /* hotplugtest.c */; };
|
|
31
33
|
006AD4251C8C5AC4007F8C6A /* hotplugtest.c in Sources */ = {isa = PBXBuildFile; fileRef = 006AD4231C8C5AAE007F8C6A /* hotplugtest.c */; };
|
|
32
34
|
006AD4261C8C5AD9007F8C6A /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
35
|
+
008A23DA236C85AF004854AA /* stress.c in Sources */ = {isa = PBXBuildFile; fileRef = 008A23C6236C8445004854AA /* stress.c */; };
|
|
36
|
+
008A23DB236C85AF004854AA /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 008A23CB236C849A004854AA /* testlib.c */; };
|
|
33
37
|
008FBF861628B7E800BC5BE2 /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF541628B7E800BC5BE2 /* core.c */; };
|
|
34
38
|
008FBF871628B7E800BC5BE2 /* descriptor.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF551628B7E800BC5BE2 /* descriptor.c */; };
|
|
35
39
|
008FBF881628B7E800BC5BE2 /* io.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF561628B7E800BC5BE2 /* io.c */; };
|
|
36
|
-
008FBF891628B7E800BC5BE2 /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
40
|
+
008FBF891628B7E800BC5BE2 /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
37
41
|
008FBF901628B7E800BC5BE2 /* libusbi.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF671628B7E800BC5BE2 /* libusbi.h */; };
|
|
38
42
|
008FBF921628B7E800BC5BE2 /* darwin_usb.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF6C1628B7E800BC5BE2 /* darwin_usb.c */; };
|
|
39
43
|
008FBF931628B7E800BC5BE2 /* darwin_usb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF6D1628B7E800BC5BE2 /* darwin_usb.h */; };
|
|
40
|
-
008FBF971628B7E800BC5BE2 /* poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF711628B7E800BC5BE2 /* poll_posix.h */; };
|
|
41
44
|
008FBF9A1628B7E800BC5BE2 /* threads_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF741628B7E800BC5BE2 /* threads_posix.c */; };
|
|
42
45
|
008FBF9B1628B7E800BC5BE2 /* threads_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF751628B7E800BC5BE2 /* threads_posix.h */; };
|
|
43
46
|
008FBFA01628B7E800BC5BE2 /* sync.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF7A1628B7E800BC5BE2 /* sync.c */; };
|
|
@@ -48,20 +51,46 @@
|
|
|
48
51
|
008FBFA91628B88000BC5BE2 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBFA81628B88000BC5BE2 /* IOKit.framework */; };
|
|
49
52
|
008FBFAB1628B8CB00BC5BE2 /* libobjc.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBFAA1628B8CB00BC5BE2 /* libobjc.dylib */; };
|
|
50
53
|
008FBFEF1628BA3500BC5BE2 /* xusb.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFED1628BA0E00BC5BE2 /* xusb.c */; };
|
|
51
|
-
008FBFF01628BA3A00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
52
54
|
008FBFFF1628BB9600BC5BE2 /* dpfp.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFD71628BA0E00BC5BE2 /* dpfp.c */; };
|
|
53
|
-
008FC0001628BBCD00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
54
|
-
008FC00F1628BBE400BC5BE2 /* dpfp_threaded.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFDB1628BA0E00BC5BE2 /* dpfp_threaded.c */; };
|
|
55
|
-
008FC0101628BBE900BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
56
55
|
008FC01F1628BC1500BC5BE2 /* fxload.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFE11628BA0E00BC5BE2 /* fxload.c */; };
|
|
57
|
-
008FC0201628BC1B00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
58
56
|
008FC0211628BC5200BC5BE2 /* ezusb.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFDC1628BA0E00BC5BE2 /* ezusb.c */; };
|
|
59
57
|
008FC0301628BC7400BC5BE2 /* listdevs.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFE71628BA0E00BC5BE2 /* listdevs.c */; };
|
|
60
|
-
008FC0311628BC7800BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
61
58
|
1438D77A17A2ED9F00166101 /* hotplug.c in Sources */ = {isa = PBXBuildFile; fileRef = 1438D77817A2ED9F00166101 /* hotplug.c */; };
|
|
62
|
-
1438D77B17A2ED9F00166101 /* hotplug.h in Headers */ = {isa = PBXBuildFile; fileRef = 1438D77917A2ED9F00166101 /* hotplug.h */; };
|
|
63
|
-
1438D77D17A2EDCD00166101 /* poll_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 1438D77C17A2EDCD00166101 /* poll_posix.c */; };
|
|
64
59
|
1438D77F17A2F0EA00166101 /* strerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1438D77E17A2F0EA00166101 /* strerror.c */; };
|
|
60
|
+
2018D95F24E453BA001589B2 /* events_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 2018D95E24E453BA001589B2 /* events_posix.c */; };
|
|
61
|
+
2018D96124E453D0001589B2 /* events_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 2018D96024E453D0001589B2 /* events_posix.h */; };
|
|
62
|
+
20468D70243298C100650534 /* sam3u_benchmark.c in Sources */ = {isa = PBXBuildFile; fileRef = 20468D6E243298C100650534 /* sam3u_benchmark.c */; };
|
|
63
|
+
20468D7E2432990100650534 /* testlibusb.c in Sources */ = {isa = PBXBuildFile; fileRef = 20468D7C2432990000650534 /* testlibusb.c */; };
|
|
64
|
+
20951C0325630F5F00ED6351 /* dpfp.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFD71628BA0E00BC5BE2 /* dpfp.c */; settings = {COMPILER_FLAGS = "-DDPFP_THREADED"; }; };
|
|
65
|
+
20951C0625630F8F00ED6351 /* ezusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFDD1628BA0E00BC5BE2 /* ezusb.h */; };
|
|
66
|
+
20951C0F25630FD300ED6351 /* libusb_testlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 008A23CA236C849A004854AA /* libusb_testlib.h */; };
|
|
67
|
+
20951C152563125200ED6351 /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
68
|
+
CEA0F5EF26321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
69
|
+
CEA0F5F026321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
70
|
+
CEA0F5F126321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
71
|
+
CEA0F5F226321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
72
|
+
CEA0F5F326321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
73
|
+
CEA0F5F426321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
74
|
+
CEA0F5F526321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
75
|
+
CEA0F5F626321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
76
|
+
CEA0F5F726321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
77
|
+
CEA0F5F826321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
78
|
+
CEA0F5F926321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
79
|
+
CEA0F5FA26321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
80
|
+
CEA0F5FB26321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
81
|
+
CEA0F5FC26321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
82
|
+
CEA0F5FD26321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
83
|
+
CEA0F5FE26321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
84
|
+
CEA0F5FF26321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
85
|
+
CEA0F60026321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
86
|
+
CEA0F60126321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
87
|
+
CEA0F60226321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
88
|
+
CEA0F60326321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
89
|
+
CEA0F60426321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
90
|
+
CEA0F60526321FAA00ADF3EC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
|
|
91
|
+
CEA0F60626321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
|
|
92
|
+
CEA0F60726321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
|
|
93
|
+
CEA45DFB2634CDFA002FA97D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEDCEA6E2632200A00F7AA49 /* Security.framework */; };
|
|
65
94
|
/* End PBXBuildFile section */
|
|
66
95
|
|
|
67
96
|
/* Begin PBXContainerItemProxy section */
|
|
@@ -72,6 +101,13 @@
|
|
|
72
101
|
remoteGlobalIDString = 006AD41B1C8C5A90007F8C6A;
|
|
73
102
|
remoteInfo = hotplugtest;
|
|
74
103
|
};
|
|
104
|
+
008A23DD236C8619004854AA /* PBXContainerItemProxy */ = {
|
|
105
|
+
isa = PBXContainerItemProxy;
|
|
106
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
107
|
+
proxyType = 1;
|
|
108
|
+
remoteGlobalIDString = 008A23D2236C8594004854AA;
|
|
109
|
+
remoteInfo = stress;
|
|
110
|
+
};
|
|
75
111
|
008FC0361628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
|
|
76
112
|
isa = PBXContainerItemProxy;
|
|
77
113
|
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
@@ -149,68 +185,57 @@
|
|
|
149
185
|
remoteGlobalIDString = 008FBF301628B79300BC5BE2;
|
|
150
186
|
remoteInfo = libusb;
|
|
151
187
|
};
|
|
152
|
-
/*
|
|
153
|
-
|
|
154
|
-
/*
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
dstPath = /usr/share/man/man1/;
|
|
159
|
-
dstSubfolderSpec = 0;
|
|
160
|
-
files = (
|
|
161
|
-
);
|
|
162
|
-
runOnlyForDeploymentPostprocessing = 1;
|
|
188
|
+
20468D812432999C00650534 /* PBXContainerItemProxy */ = {
|
|
189
|
+
isa = PBXContainerItemProxy;
|
|
190
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
191
|
+
proxyType = 1;
|
|
192
|
+
remoteGlobalIDString = 008FBF301628B79300BC5BE2;
|
|
193
|
+
remoteInfo = libusb;
|
|
163
194
|
};
|
|
164
|
-
|
|
165
|
-
isa =
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
);
|
|
171
|
-
runOnlyForDeploymentPostprocessing = 1;
|
|
195
|
+
20468D83243299A900650534 /* PBXContainerItemProxy */ = {
|
|
196
|
+
isa = PBXContainerItemProxy;
|
|
197
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
198
|
+
proxyType = 1;
|
|
199
|
+
remoteGlobalIDString = 008FBF301628B79300BC5BE2;
|
|
200
|
+
remoteInfo = libusb;
|
|
172
201
|
};
|
|
173
|
-
|
|
174
|
-
isa =
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
);
|
|
180
|
-
runOnlyForDeploymentPostprocessing = 1;
|
|
202
|
+
20468D85243299B200650534 /* PBXContainerItemProxy */ = {
|
|
203
|
+
isa = PBXContainerItemProxy;
|
|
204
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
205
|
+
proxyType = 1;
|
|
206
|
+
remoteGlobalIDString = 008FBF301628B79300BC5BE2;
|
|
207
|
+
remoteInfo = libusb;
|
|
181
208
|
};
|
|
182
|
-
|
|
183
|
-
isa =
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
);
|
|
189
|
-
runOnlyForDeploymentPostprocessing = 1;
|
|
209
|
+
20468D87243299BA00650534 /* PBXContainerItemProxy */ = {
|
|
210
|
+
isa = PBXContainerItemProxy;
|
|
211
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
212
|
+
proxyType = 1;
|
|
213
|
+
remoteGlobalIDString = 008FBF301628B79300BC5BE2;
|
|
214
|
+
remoteInfo = libusb;
|
|
190
215
|
};
|
|
191
|
-
|
|
192
|
-
isa =
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
);
|
|
198
|
-
runOnlyForDeploymentPostprocessing = 1;
|
|
216
|
+
20468D8D24329E3800650534 /* PBXContainerItemProxy */ = {
|
|
217
|
+
isa = PBXContainerItemProxy;
|
|
218
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
219
|
+
proxyType = 1;
|
|
220
|
+
remoteGlobalIDString = 20468D66243298AE00650534;
|
|
221
|
+
remoteInfo = sam3u_benchmark;
|
|
199
222
|
};
|
|
200
|
-
|
|
201
|
-
isa =
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
);
|
|
207
|
-
runOnlyForDeploymentPostprocessing = 1;
|
|
223
|
+
20468D8F24329E3F00650534 /* PBXContainerItemProxy */ = {
|
|
224
|
+
isa = PBXContainerItemProxy;
|
|
225
|
+
containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
|
|
226
|
+
proxyType = 1;
|
|
227
|
+
remoteGlobalIDString = 20468D74243298D300650534;
|
|
228
|
+
remoteInfo = testlibusb;
|
|
208
229
|
};
|
|
209
|
-
/* End
|
|
230
|
+
/* End PBXContainerItemProxy section */
|
|
210
231
|
|
|
211
232
|
/* Begin PBXFileReference section */
|
|
212
233
|
006AD41C1C8C5A90007F8C6A /* hotplugtest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = hotplugtest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
213
234
|
006AD4231C8C5AAE007F8C6A /* hotplugtest.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = hotplugtest.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
235
|
+
008A23C6236C8445004854AA /* stress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stress.c; sourceTree = "<group>"; usesTabs = 1; };
|
|
236
|
+
008A23CA236C849A004854AA /* libusb_testlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libusb_testlib.h; sourceTree = "<group>"; usesTabs = 1; };
|
|
237
|
+
008A23CB236C849A004854AA /* testlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testlib.c; sourceTree = "<group>"; usesTabs = 1; };
|
|
238
|
+
008A23D3236C8594004854AA /* stress */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = stress; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
214
239
|
008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = "libusb-1.0.0.dylib"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
215
240
|
008FBF541628B7E800BC5BE2 /* core.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = core.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
216
241
|
008FBF551628B7E800BC5BE2 /* descriptor.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = descriptor.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
@@ -219,7 +244,6 @@
|
|
|
219
244
|
008FBF671628B7E800BC5BE2 /* libusbi.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = libusbi.h; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
220
245
|
008FBF6C1628B7E800BC5BE2 /* darwin_usb.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.c; path = darwin_usb.c; sourceTree = "<group>"; tabWidth = 2; usesTabs = 0; };
|
|
221
246
|
008FBF6D1628B7E800BC5BE2 /* darwin_usb.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; path = darwin_usb.h; sourceTree = "<group>"; tabWidth = 2; usesTabs = 0; };
|
|
222
|
-
008FBF711628B7E800BC5BE2 /* poll_posix.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = poll_posix.h; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
223
247
|
008FBF741628B7E800BC5BE2 /* threads_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = threads_posix.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
224
248
|
008FBF751628B7E800BC5BE2 /* threads_posix.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = threads_posix.h; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
225
249
|
008FBF7A1628B7E800BC5BE2 /* sync.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = sync.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
@@ -230,20 +254,17 @@
|
|
|
230
254
|
008FBFA81628B88000BC5BE2 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
|
231
255
|
008FBFAA1628B8CB00BC5BE2 /* libobjc.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libobjc.dylib; path = usr/lib/libobjc.dylib; sourceTree = SDKROOT; };
|
|
232
256
|
008FBFBD1628B9FE00BC5BE2 /* xusb */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xusb; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
233
|
-
008FBFD71628BA0E00BC5BE2 /* dpfp.c */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = dpfp.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
008FBFED1628BA0E00BC5BE2 /* xusb.c */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = xusb.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
257
|
+
008FBFD71628BA0E00BC5BE2 /* dpfp.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = dpfp.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
258
|
+
008FBFDC1628BA0E00BC5BE2 /* ezusb.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = ezusb.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
259
|
+
008FBFDD1628BA0E00BC5BE2 /* ezusb.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = ezusb.h; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
260
|
+
008FBFE11628BA0E00BC5BE2 /* fxload.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = fxload.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
261
|
+
008FBFE71628BA0E00BC5BE2 /* listdevs.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = listdevs.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
262
|
+
008FBFED1628BA0E00BC5BE2 /* xusb.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = xusb.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
240
263
|
008FBFF51628BB8B00BC5BE2 /* dpfp */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dpfp; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
241
264
|
008FC0051628BBDB00BC5BE2 /* dpfp_threaded */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dpfp_threaded; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
242
265
|
008FC0151628BC0300BC5BE2 /* fxload */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = fxload; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
243
266
|
008FC0261628BC6B00BC5BE2 /* listdevs */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = listdevs; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
244
267
|
1438D77817A2ED9F00166101 /* hotplug.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = hotplug.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
245
|
-
1438D77917A2ED9F00166101 /* hotplug.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = hotplug.h; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
246
|
-
1438D77C17A2EDCD00166101 /* poll_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = poll_posix.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
247
268
|
1438D77E17A2F0EA00166101 /* strerror.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.c; path = strerror.c; sourceTree = "<group>"; tabWidth = 4; usesTabs = 1; };
|
|
248
269
|
1443EE8416417E63007E0579 /* common.xcconfig */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = SOURCE_ROOT; tabWidth = 4; usesTabs = 1; };
|
|
249
270
|
1443EE8516417E63007E0579 /* debug.xcconfig */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = SOURCE_ROOT; tabWidth = 4; usesTabs = 1; };
|
|
@@ -251,6 +272,13 @@
|
|
|
251
272
|
1443EE8716417E63007E0579 /* libusb.xcconfig */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = text.xcconfig; path = libusb.xcconfig; sourceTree = SOURCE_ROOT; tabWidth = 4; usesTabs = 1; };
|
|
252
273
|
1443EE8816417E63007E0579 /* release.xcconfig */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = SOURCE_ROOT; tabWidth = 4; usesTabs = 1; };
|
|
253
274
|
1443EE8916417EA6007E0579 /* libusb_release.xcconfig */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = text.xcconfig; path = libusb_release.xcconfig; sourceTree = SOURCE_ROOT; tabWidth = 4; usesTabs = 1; };
|
|
275
|
+
2018D95E24E453BA001589B2 /* events_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = events_posix.c; sourceTree = "<group>"; };
|
|
276
|
+
2018D96024E453D0001589B2 /* events_posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = events_posix.h; sourceTree = "<group>"; };
|
|
277
|
+
20468D67243298AE00650534 /* sam3u_benchmark */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = sam3u_benchmark; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
278
|
+
20468D6E243298C100650534 /* sam3u_benchmark.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sam3u_benchmark.c; sourceTree = "<group>"; usesTabs = 1; };
|
|
279
|
+
20468D75243298D300650534 /* testlibusb */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testlibusb; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
280
|
+
20468D7C2432990000650534 /* testlibusb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testlibusb.c; sourceTree = "<group>"; usesTabs = 1; };
|
|
281
|
+
CEDCEA6E2632200A00F7AA49 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
|
|
254
282
|
/* End PBXFileReference section */
|
|
255
283
|
|
|
256
284
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -258,7 +286,15 @@
|
|
|
258
286
|
isa = PBXFrameworksBuildPhase;
|
|
259
287
|
buildActionMask = 2147483647;
|
|
260
288
|
files = (
|
|
261
|
-
|
|
289
|
+
CEA0F5F826321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
290
|
+
);
|
|
291
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
292
|
+
};
|
|
293
|
+
008A23D0236C8594004854AA /* Frameworks */ = {
|
|
294
|
+
isa = PBXFrameworksBuildPhase;
|
|
295
|
+
buildActionMask = 2147483647;
|
|
296
|
+
files = (
|
|
297
|
+
CEA0F60126321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
262
298
|
);
|
|
263
299
|
runOnlyForDeploymentPostprocessing = 0;
|
|
264
300
|
};
|
|
@@ -268,6 +304,7 @@
|
|
|
268
304
|
files = (
|
|
269
305
|
008FBFAB1628B8CB00BC5BE2 /* libobjc.dylib in Frameworks */,
|
|
270
306
|
008FBFA91628B88000BC5BE2 /* IOKit.framework in Frameworks */,
|
|
307
|
+
CEA45DFB2634CDFA002FA97D /* Security.framework in Frameworks */,
|
|
271
308
|
008FBFA71628B87000BC5BE2 /* CoreFoundation.framework in Frameworks */,
|
|
272
309
|
);
|
|
273
310
|
runOnlyForDeploymentPostprocessing = 0;
|
|
@@ -276,7 +313,7 @@
|
|
|
276
313
|
isa = PBXFrameworksBuildPhase;
|
|
277
314
|
buildActionMask = 2147483647;
|
|
278
315
|
files = (
|
|
279
|
-
|
|
316
|
+
CEA0F60726321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
280
317
|
);
|
|
281
318
|
runOnlyForDeploymentPostprocessing = 0;
|
|
282
319
|
};
|
|
@@ -284,7 +321,7 @@
|
|
|
284
321
|
isa = PBXFrameworksBuildPhase;
|
|
285
322
|
buildActionMask = 2147483647;
|
|
286
323
|
files = (
|
|
287
|
-
|
|
324
|
+
006AD4261C8C5AD9007F8C6A /* libusb-1.0.0.dylib in Frameworks */,
|
|
288
325
|
);
|
|
289
326
|
runOnlyForDeploymentPostprocessing = 0;
|
|
290
327
|
};
|
|
@@ -292,7 +329,7 @@
|
|
|
292
329
|
isa = PBXFrameworksBuildPhase;
|
|
293
330
|
buildActionMask = 2147483647;
|
|
294
331
|
files = (
|
|
295
|
-
|
|
332
|
+
CEA0F5F226321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
296
333
|
);
|
|
297
334
|
runOnlyForDeploymentPostprocessing = 0;
|
|
298
335
|
};
|
|
@@ -300,7 +337,7 @@
|
|
|
300
337
|
isa = PBXFrameworksBuildPhase;
|
|
301
338
|
buildActionMask = 2147483647;
|
|
302
339
|
files = (
|
|
303
|
-
|
|
340
|
+
CEA0F5F526321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
304
341
|
);
|
|
305
342
|
runOnlyForDeploymentPostprocessing = 0;
|
|
306
343
|
};
|
|
@@ -308,13 +345,40 @@
|
|
|
308
345
|
isa = PBXFrameworksBuildPhase;
|
|
309
346
|
buildActionMask = 2147483647;
|
|
310
347
|
files = (
|
|
311
|
-
|
|
348
|
+
CEA0F5FB26321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
349
|
+
);
|
|
350
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
351
|
+
};
|
|
352
|
+
20468D64243298AE00650534 /* Frameworks */ = {
|
|
353
|
+
isa = PBXFrameworksBuildPhase;
|
|
354
|
+
buildActionMask = 2147483647;
|
|
355
|
+
files = (
|
|
356
|
+
CEA0F5FE26321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
357
|
+
);
|
|
358
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
359
|
+
};
|
|
360
|
+
20468D72243298D300650534 /* Frameworks */ = {
|
|
361
|
+
isa = PBXFrameworksBuildPhase;
|
|
362
|
+
buildActionMask = 2147483647;
|
|
363
|
+
files = (
|
|
364
|
+
CEA0F60426321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */,
|
|
312
365
|
);
|
|
313
366
|
runOnlyForDeploymentPostprocessing = 0;
|
|
314
367
|
};
|
|
315
368
|
/* End PBXFrameworksBuildPhase section */
|
|
316
369
|
|
|
317
370
|
/* Begin PBXGroup section */
|
|
371
|
+
001B1F09236C836000F231DC /* tests */ = {
|
|
372
|
+
isa = PBXGroup;
|
|
373
|
+
children = (
|
|
374
|
+
008A23CA236C849A004854AA /* libusb_testlib.h */,
|
|
375
|
+
008A23C6236C8445004854AA /* stress.c */,
|
|
376
|
+
008A23CB236C849A004854AA /* testlib.c */,
|
|
377
|
+
);
|
|
378
|
+
name = tests;
|
|
379
|
+
path = ../tests;
|
|
380
|
+
sourceTree = "<group>";
|
|
381
|
+
};
|
|
318
382
|
008FBF261628B79300BC5BE2 = {
|
|
319
383
|
isa = PBXGroup;
|
|
320
384
|
children = (
|
|
@@ -322,6 +386,7 @@
|
|
|
322
386
|
008FBFA41628B84200BC5BE2 /* config.h */,
|
|
323
387
|
008FBF3B1628B7E800BC5BE2 /* libusb */,
|
|
324
388
|
008FBFC81628BA0E00BC5BE2 /* examples */,
|
|
389
|
+
001B1F09236C836000F231DC /* tests */,
|
|
325
390
|
1443EE8A16419057007E0579 /* Apple */,
|
|
326
391
|
008FBF321628B79300BC5BE2 /* Products */,
|
|
327
392
|
);
|
|
@@ -331,12 +396,15 @@
|
|
|
331
396
|
isa = PBXGroup;
|
|
332
397
|
children = (
|
|
333
398
|
008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */,
|
|
334
|
-
008FBFBD1628B9FE00BC5BE2 /* xusb */,
|
|
335
399
|
008FBFF51628BB8B00BC5BE2 /* dpfp */,
|
|
336
400
|
008FC0051628BBDB00BC5BE2 /* dpfp_threaded */,
|
|
337
401
|
008FC0151628BC0300BC5BE2 /* fxload */,
|
|
338
402
|
008FC0261628BC6B00BC5BE2 /* listdevs */,
|
|
339
403
|
006AD41C1C8C5A90007F8C6A /* hotplugtest */,
|
|
404
|
+
008A23D3236C8594004854AA /* stress */,
|
|
405
|
+
20468D67243298AE00650534 /* sam3u_benchmark */,
|
|
406
|
+
20468D75243298D300650534 /* testlibusb */,
|
|
407
|
+
008FBFBD1628B9FE00BC5BE2 /* xusb */,
|
|
340
408
|
);
|
|
341
409
|
name = Products;
|
|
342
410
|
sourceTree = "<group>";
|
|
@@ -347,7 +415,6 @@
|
|
|
347
415
|
008FBF541628B7E800BC5BE2 /* core.c */,
|
|
348
416
|
008FBF551628B7E800BC5BE2 /* descriptor.c */,
|
|
349
417
|
1438D77817A2ED9F00166101 /* hotplug.c */,
|
|
350
|
-
1438D77917A2ED9F00166101 /* hotplug.h */,
|
|
351
418
|
008FBF561628B7E800BC5BE2 /* io.c */,
|
|
352
419
|
008FBF5A1628B7E800BC5BE2 /* libusb.h */,
|
|
353
420
|
008FBF671628B7E800BC5BE2 /* libusbi.h */,
|
|
@@ -366,8 +433,8 @@
|
|
|
366
433
|
children = (
|
|
367
434
|
008FBF6C1628B7E800BC5BE2 /* darwin_usb.c */,
|
|
368
435
|
008FBF6D1628B7E800BC5BE2 /* darwin_usb.h */,
|
|
369
|
-
|
|
370
|
-
|
|
436
|
+
2018D95E24E453BA001589B2 /* events_posix.c */,
|
|
437
|
+
2018D96024E453D0001589B2 /* events_posix.h */,
|
|
371
438
|
008FBF741628B7E800BC5BE2 /* threads_posix.c */,
|
|
372
439
|
008FBF751628B7E800BC5BE2 /* threads_posix.h */,
|
|
373
440
|
);
|
|
@@ -377,13 +444,14 @@
|
|
|
377
444
|
008FBFC81628BA0E00BC5BE2 /* examples */ = {
|
|
378
445
|
isa = PBXGroup;
|
|
379
446
|
children = (
|
|
380
|
-
008FBFDB1628BA0E00BC5BE2 /* dpfp_threaded.c */,
|
|
381
447
|
008FBFD71628BA0E00BC5BE2 /* dpfp.c */,
|
|
382
448
|
008FBFDC1628BA0E00BC5BE2 /* ezusb.c */,
|
|
383
449
|
008FBFDD1628BA0E00BC5BE2 /* ezusb.h */,
|
|
384
450
|
008FBFE11628BA0E00BC5BE2 /* fxload.c */,
|
|
385
451
|
006AD4231C8C5AAE007F8C6A /* hotplugtest.c */,
|
|
386
452
|
008FBFE71628BA0E00BC5BE2 /* listdevs.c */,
|
|
453
|
+
20468D6E243298C100650534 /* sam3u_benchmark.c */,
|
|
454
|
+
20468D7C2432990000650534 /* testlibusb.c */,
|
|
387
455
|
008FBFED1628BA0E00BC5BE2 /* xusb.c */,
|
|
388
456
|
);
|
|
389
457
|
name = examples;
|
|
@@ -410,6 +478,7 @@
|
|
|
410
478
|
008FBFAA1628B8CB00BC5BE2 /* libobjc.dylib */,
|
|
411
479
|
008FBFA81628B88000BC5BE2 /* IOKit.framework */,
|
|
412
480
|
008FBFA61628B87000BC5BE2 /* CoreFoundation.framework */,
|
|
481
|
+
CEDCEA6E2632200A00F7AA49 /* Security.framework */,
|
|
413
482
|
);
|
|
414
483
|
name = Apple;
|
|
415
484
|
path = ../libusb;
|
|
@@ -423,14 +492,96 @@
|
|
|
423
492
|
buildActionMask = 2147483647;
|
|
424
493
|
files = (
|
|
425
494
|
008FBF891628B7E800BC5BE2 /* libusb.h in Headers */,
|
|
426
|
-
|
|
495
|
+
008FBFA51628B84200BC5BE2 /* config.h in Headers */,
|
|
427
496
|
008FBF931628B7E800BC5BE2 /* darwin_usb.h in Headers */,
|
|
428
|
-
|
|
497
|
+
2018D96124E453D0001589B2 /* events_posix.h in Headers */,
|
|
498
|
+
008FBF901628B7E800BC5BE2 /* libusbi.h in Headers */,
|
|
429
499
|
008FBF9B1628B7E800BC5BE2 /* threads_posix.h in Headers */,
|
|
430
500
|
008FBFA11628B7E800BC5BE2 /* version.h in Headers */,
|
|
431
501
|
008FBFA21628B7E800BC5BE2 /* version_nano.h in Headers */,
|
|
432
|
-
|
|
433
|
-
|
|
502
|
+
);
|
|
503
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
504
|
+
};
|
|
505
|
+
20951BFF25630EBE00ED6351 /* Headers */ = {
|
|
506
|
+
isa = PBXHeadersBuildPhase;
|
|
507
|
+
buildActionMask = 2147483647;
|
|
508
|
+
files = (
|
|
509
|
+
CEA0F5EF26321FAA00ADF3EC /* config.h in Headers */,
|
|
510
|
+
20951C152563125200ED6351 /* libusb.h in Headers */,
|
|
511
|
+
);
|
|
512
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
513
|
+
};
|
|
514
|
+
20951C0125630F4100ED6351 /* Headers */ = {
|
|
515
|
+
isa = PBXHeadersBuildPhase;
|
|
516
|
+
buildActionMask = 2147483647;
|
|
517
|
+
files = (
|
|
518
|
+
CEA0F5F026321FAA00ADF3EC /* config.h in Headers */,
|
|
519
|
+
CEA0F5F126321FAA00ADF3EC /* libusb.h in Headers */,
|
|
520
|
+
);
|
|
521
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
522
|
+
};
|
|
523
|
+
20951C0425630F7600ED6351 /* Headers */ = {
|
|
524
|
+
isa = PBXHeadersBuildPhase;
|
|
525
|
+
buildActionMask = 2147483647;
|
|
526
|
+
files = (
|
|
527
|
+
CEA0F5F326321FAA00ADF3EC /* config.h in Headers */,
|
|
528
|
+
20951C0625630F8F00ED6351 /* ezusb.h in Headers */,
|
|
529
|
+
CEA0F5F426321FAA00ADF3EC /* libusb.h in Headers */,
|
|
530
|
+
);
|
|
531
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
532
|
+
};
|
|
533
|
+
20951C0725630F9D00ED6351 /* Headers */ = {
|
|
534
|
+
isa = PBXHeadersBuildPhase;
|
|
535
|
+
buildActionMask = 2147483647;
|
|
536
|
+
files = (
|
|
537
|
+
CEA0F5F626321FAA00ADF3EC /* config.h in Headers */,
|
|
538
|
+
CEA0F5F726321FAA00ADF3EC /* libusb.h in Headers */,
|
|
539
|
+
);
|
|
540
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
541
|
+
};
|
|
542
|
+
20951C0925630FA900ED6351 /* Headers */ = {
|
|
543
|
+
isa = PBXHeadersBuildPhase;
|
|
544
|
+
buildActionMask = 2147483647;
|
|
545
|
+
files = (
|
|
546
|
+
CEA0F5F926321FAA00ADF3EC /* config.h in Headers */,
|
|
547
|
+
CEA0F5FA26321FAA00ADF3EC /* libusb.h in Headers */,
|
|
548
|
+
);
|
|
549
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
550
|
+
};
|
|
551
|
+
20951C0B25630FB400ED6351 /* Headers */ = {
|
|
552
|
+
isa = PBXHeadersBuildPhase;
|
|
553
|
+
buildActionMask = 2147483647;
|
|
554
|
+
files = (
|
|
555
|
+
CEA0F5FC26321FAA00ADF3EC /* config.h in Headers */,
|
|
556
|
+
CEA0F5FD26321FAA00ADF3EC /* libusb.h in Headers */,
|
|
557
|
+
);
|
|
558
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
559
|
+
};
|
|
560
|
+
20951C0D25630FC000ED6351 /* Headers */ = {
|
|
561
|
+
isa = PBXHeadersBuildPhase;
|
|
562
|
+
buildActionMask = 2147483647;
|
|
563
|
+
files = (
|
|
564
|
+
CEA0F5FF26321FAA00ADF3EC /* config.h in Headers */,
|
|
565
|
+
20951C0F25630FD300ED6351 /* libusb_testlib.h in Headers */,
|
|
566
|
+
CEA0F60026321FAA00ADF3EC /* libusb.h in Headers */,
|
|
567
|
+
);
|
|
568
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
569
|
+
};
|
|
570
|
+
20951C1025630FE300ED6351 /* Headers */ = {
|
|
571
|
+
isa = PBXHeadersBuildPhase;
|
|
572
|
+
buildActionMask = 2147483647;
|
|
573
|
+
files = (
|
|
574
|
+
CEA0F60226321FAA00ADF3EC /* config.h in Headers */,
|
|
575
|
+
CEA0F60326321FAA00ADF3EC /* libusb.h in Headers */,
|
|
576
|
+
);
|
|
577
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
578
|
+
};
|
|
579
|
+
20951C1225630FEE00ED6351 /* Headers */ = {
|
|
580
|
+
isa = PBXHeadersBuildPhase;
|
|
581
|
+
buildActionMask = 2147483647;
|
|
582
|
+
files = (
|
|
583
|
+
CEA0F60526321FAA00ADF3EC /* config.h in Headers */,
|
|
584
|
+
CEA0F60626321FAA00ADF3EC /* libusb.h in Headers */,
|
|
434
585
|
);
|
|
435
586
|
runOnlyForDeploymentPostprocessing = 0;
|
|
436
587
|
};
|
|
@@ -441,26 +592,45 @@
|
|
|
441
592
|
isa = PBXNativeTarget;
|
|
442
593
|
buildConfigurationList = 006AD4221C8C5A90007F8C6A /* Build configuration list for PBXNativeTarget "hotplugtest" */;
|
|
443
594
|
buildPhases = (
|
|
595
|
+
20951C0725630F9D00ED6351 /* Headers */,
|
|
444
596
|
006AD4181C8C5A90007F8C6A /* Sources */,
|
|
445
597
|
006AD4191C8C5A90007F8C6A /* Frameworks */,
|
|
446
|
-
006AD41A1C8C5A90007F8C6A /* CopyFiles */,
|
|
447
598
|
);
|
|
448
599
|
buildRules = (
|
|
449
600
|
);
|
|
450
601
|
dependencies = (
|
|
602
|
+
20468D822432999C00650534 /* PBXTargetDependency */,
|
|
451
603
|
);
|
|
452
604
|
name = hotplugtest;
|
|
453
605
|
productName = hotplugtest;
|
|
454
606
|
productReference = 006AD41C1C8C5A90007F8C6A /* hotplugtest */;
|
|
455
607
|
productType = "com.apple.product-type.tool";
|
|
456
608
|
};
|
|
609
|
+
008A23D2236C8594004854AA /* stress */ = {
|
|
610
|
+
isa = PBXNativeTarget;
|
|
611
|
+
buildConfigurationList = 008A23D7236C8594004854AA /* Build configuration list for PBXNativeTarget "stress" */;
|
|
612
|
+
buildPhases = (
|
|
613
|
+
20951C0D25630FC000ED6351 /* Headers */,
|
|
614
|
+
008A23CF236C8594004854AA /* Sources */,
|
|
615
|
+
008A23D0236C8594004854AA /* Frameworks */,
|
|
616
|
+
);
|
|
617
|
+
buildRules = (
|
|
618
|
+
);
|
|
619
|
+
dependencies = (
|
|
620
|
+
20468D86243299B200650534 /* PBXTargetDependency */,
|
|
621
|
+
);
|
|
622
|
+
name = stress;
|
|
623
|
+
productName = stress;
|
|
624
|
+
productReference = 008A23D3236C8594004854AA /* stress */;
|
|
625
|
+
productType = "com.apple.product-type.tool";
|
|
626
|
+
};
|
|
457
627
|
008FBF301628B79300BC5BE2 /* libusb */ = {
|
|
458
628
|
isa = PBXNativeTarget;
|
|
459
629
|
buildConfigurationList = 008FBF351628B79300BC5BE2 /* Build configuration list for PBXNativeTarget "libusb" */;
|
|
460
630
|
buildPhases = (
|
|
631
|
+
008FBF2F1628B79300BC5BE2 /* Headers */,
|
|
461
632
|
008FBF2D1628B79300BC5BE2 /* Sources */,
|
|
462
633
|
008FBF2E1628B79300BC5BE2 /* Frameworks */,
|
|
463
|
-
008FBF2F1628B79300BC5BE2 /* Headers */,
|
|
464
634
|
);
|
|
465
635
|
buildRules = (
|
|
466
636
|
);
|
|
@@ -475,9 +645,9 @@
|
|
|
475
645
|
isa = PBXNativeTarget;
|
|
476
646
|
buildConfigurationList = 008FBFC61628B9FE00BC5BE2 /* Build configuration list for PBXNativeTarget "xusb" */;
|
|
477
647
|
buildPhases = (
|
|
648
|
+
20951C1225630FEE00ED6351 /* Headers */,
|
|
478
649
|
008FBFB91628B9FE00BC5BE2 /* Sources */,
|
|
479
650
|
008FBFBA1628B9FE00BC5BE2 /* Frameworks */,
|
|
480
|
-
008FBFBB1628B9FE00BC5BE2 /* CopyFiles */,
|
|
481
651
|
);
|
|
482
652
|
buildRules = (
|
|
483
653
|
);
|
|
@@ -493,9 +663,9 @@
|
|
|
493
663
|
isa = PBXNativeTarget;
|
|
494
664
|
buildConfigurationList = 008FBFFC1628BB8C00BC5BE2 /* Build configuration list for PBXNativeTarget "dpfp" */;
|
|
495
665
|
buildPhases = (
|
|
666
|
+
20951BFF25630EBE00ED6351 /* Headers */,
|
|
496
667
|
008FBFF11628BB8B00BC5BE2 /* Sources */,
|
|
497
668
|
008FBFF21628BB8B00BC5BE2 /* Frameworks */,
|
|
498
|
-
008FBFF31628BB8B00BC5BE2 /* CopyFiles */,
|
|
499
669
|
);
|
|
500
670
|
buildRules = (
|
|
501
671
|
);
|
|
@@ -511,9 +681,9 @@
|
|
|
511
681
|
isa = PBXNativeTarget;
|
|
512
682
|
buildConfigurationList = 008FC00C1628BBDB00BC5BE2 /* Build configuration list for PBXNativeTarget "dpfp_threaded" */;
|
|
513
683
|
buildPhases = (
|
|
684
|
+
20951C0125630F4100ED6351 /* Headers */,
|
|
514
685
|
008FC0011628BBDB00BC5BE2 /* Sources */,
|
|
515
686
|
008FC0021628BBDB00BC5BE2 /* Frameworks */,
|
|
516
|
-
008FC0031628BBDB00BC5BE2 /* CopyFiles */,
|
|
517
687
|
);
|
|
518
688
|
buildRules = (
|
|
519
689
|
);
|
|
@@ -529,9 +699,9 @@
|
|
|
529
699
|
isa = PBXNativeTarget;
|
|
530
700
|
buildConfigurationList = 008FC01C1628BC0300BC5BE2 /* Build configuration list for PBXNativeTarget "fxload" */;
|
|
531
701
|
buildPhases = (
|
|
702
|
+
20951C0425630F7600ED6351 /* Headers */,
|
|
532
703
|
008FC0111628BC0300BC5BE2 /* Sources */,
|
|
533
704
|
008FC0121628BC0300BC5BE2 /* Frameworks */,
|
|
534
|
-
008FC0131628BC0300BC5BE2 /* CopyFiles */,
|
|
535
705
|
);
|
|
536
706
|
buildRules = (
|
|
537
707
|
);
|
|
@@ -547,9 +717,9 @@
|
|
|
547
717
|
isa = PBXNativeTarget;
|
|
548
718
|
buildConfigurationList = 008FC02D1628BC6B00BC5BE2 /* Build configuration list for PBXNativeTarget "listdevs" */;
|
|
549
719
|
buildPhases = (
|
|
720
|
+
20951C0925630FA900ED6351 /* Headers */,
|
|
550
721
|
008FC0221628BC6B00BC5BE2 /* Sources */,
|
|
551
722
|
008FC0231628BC6B00BC5BE2 /* Frameworks */,
|
|
552
|
-
008FC0241628BC6B00BC5BE2 /* CopyFiles */,
|
|
553
723
|
);
|
|
554
724
|
buildRules = (
|
|
555
725
|
);
|
|
@@ -561,26 +731,72 @@
|
|
|
561
731
|
productReference = 008FC0261628BC6B00BC5BE2 /* listdevs */;
|
|
562
732
|
productType = "com.apple.product-type.tool";
|
|
563
733
|
};
|
|
734
|
+
20468D66243298AE00650534 /* sam3u_benchmark */ = {
|
|
735
|
+
isa = PBXNativeTarget;
|
|
736
|
+
buildConfigurationList = 20468D6B243298AE00650534 /* Build configuration list for PBXNativeTarget "sam3u_benchmark" */;
|
|
737
|
+
buildPhases = (
|
|
738
|
+
20951C0B25630FB400ED6351 /* Headers */,
|
|
739
|
+
20468D63243298AE00650534 /* Sources */,
|
|
740
|
+
20468D64243298AE00650534 /* Frameworks */,
|
|
741
|
+
);
|
|
742
|
+
buildRules = (
|
|
743
|
+
);
|
|
744
|
+
dependencies = (
|
|
745
|
+
20468D84243299A900650534 /* PBXTargetDependency */,
|
|
746
|
+
);
|
|
747
|
+
name = sam3u_benchmark;
|
|
748
|
+
productName = sam3u_benchmark;
|
|
749
|
+
productReference = 20468D67243298AE00650534 /* sam3u_benchmark */;
|
|
750
|
+
productType = "com.apple.product-type.tool";
|
|
751
|
+
};
|
|
752
|
+
20468D74243298D300650534 /* testlibusb */ = {
|
|
753
|
+
isa = PBXNativeTarget;
|
|
754
|
+
buildConfigurationList = 20468D79243298D300650534 /* Build configuration list for PBXNativeTarget "testlibusb" */;
|
|
755
|
+
buildPhases = (
|
|
756
|
+
20951C1025630FE300ED6351 /* Headers */,
|
|
757
|
+
20468D71243298D300650534 /* Sources */,
|
|
758
|
+
20468D72243298D300650534 /* Frameworks */,
|
|
759
|
+
);
|
|
760
|
+
buildRules = (
|
|
761
|
+
);
|
|
762
|
+
dependencies = (
|
|
763
|
+
20468D88243299BA00650534 /* PBXTargetDependency */,
|
|
764
|
+
);
|
|
765
|
+
name = testlibusb;
|
|
766
|
+
productName = testlibusb;
|
|
767
|
+
productReference = 20468D75243298D300650534 /* testlibusb */;
|
|
768
|
+
productType = "com.apple.product-type.tool";
|
|
769
|
+
};
|
|
564
770
|
/* End PBXNativeTarget section */
|
|
565
771
|
|
|
566
772
|
/* Begin PBXProject section */
|
|
567
773
|
008FBF281628B79300BC5BE2 /* Project object */ = {
|
|
568
774
|
isa = PBXProject;
|
|
569
775
|
attributes = {
|
|
570
|
-
LastUpgradeCheck =
|
|
776
|
+
LastUpgradeCheck = 1120;
|
|
571
777
|
ORGANIZATIONNAME = libusb;
|
|
572
778
|
TargetAttributes = {
|
|
573
779
|
006AD41B1C8C5A90007F8C6A = {
|
|
574
780
|
CreatedOnToolsVersion = 7.2.1;
|
|
575
781
|
};
|
|
782
|
+
008A23D2236C8594004854AA = {
|
|
783
|
+
CreatedOnToolsVersion = 11.2;
|
|
784
|
+
};
|
|
785
|
+
20468D66243298AE00650534 = {
|
|
786
|
+
CreatedOnToolsVersion = 10.1;
|
|
787
|
+
};
|
|
788
|
+
20468D74243298D300650534 = {
|
|
789
|
+
CreatedOnToolsVersion = 10.1;
|
|
790
|
+
};
|
|
576
791
|
};
|
|
577
792
|
};
|
|
578
793
|
buildConfigurationList = 008FBF2B1628B79300BC5BE2 /* Build configuration list for PBXProject "libusb" */;
|
|
579
794
|
compatibilityVersion = "Xcode 3.1";
|
|
580
|
-
developmentRegion =
|
|
795
|
+
developmentRegion = en;
|
|
581
796
|
hasScannedForEncodings = 0;
|
|
582
797
|
knownRegions = (
|
|
583
798
|
en,
|
|
799
|
+
Base,
|
|
584
800
|
);
|
|
585
801
|
mainGroup = 008FBF261628B79300BC5BE2;
|
|
586
802
|
productRefGroup = 008FBF321628B79300BC5BE2 /* Products */;
|
|
@@ -588,12 +804,15 @@
|
|
|
588
804
|
projectRoot = "";
|
|
589
805
|
targets = (
|
|
590
806
|
008FBF301628B79300BC5BE2 /* libusb */,
|
|
591
|
-
008FBFBC1628B9FE00BC5BE2 /* xusb */,
|
|
592
807
|
008FBFF41628BB8B00BC5BE2 /* dpfp */,
|
|
593
808
|
008FC0041628BBDB00BC5BE2 /* dpfp_threaded */,
|
|
594
809
|
008FC0141628BC0300BC5BE2 /* fxload */,
|
|
595
|
-
008FC0251628BC6B00BC5BE2 /* listdevs */,
|
|
596
810
|
006AD41B1C8C5A90007F8C6A /* hotplugtest */,
|
|
811
|
+
008FC0251628BC6B00BC5BE2 /* listdevs */,
|
|
812
|
+
20468D66243298AE00650534 /* sam3u_benchmark */,
|
|
813
|
+
008A23D2236C8594004854AA /* stress */,
|
|
814
|
+
20468D74243298D300650534 /* testlibusb */,
|
|
815
|
+
008FBFBC1628B9FE00BC5BE2 /* xusb */,
|
|
597
816
|
008FC0321628BC9400BC5BE2 /* all */,
|
|
598
817
|
);
|
|
599
818
|
};
|
|
@@ -608,20 +827,28 @@
|
|
|
608
827
|
);
|
|
609
828
|
runOnlyForDeploymentPostprocessing = 0;
|
|
610
829
|
};
|
|
830
|
+
008A23CF236C8594004854AA /* Sources */ = {
|
|
831
|
+
isa = PBXSourcesBuildPhase;
|
|
832
|
+
buildActionMask = 2147483647;
|
|
833
|
+
files = (
|
|
834
|
+
008A23DA236C85AF004854AA /* stress.c in Sources */,
|
|
835
|
+
008A23DB236C85AF004854AA /* testlib.c in Sources */,
|
|
836
|
+
);
|
|
837
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
838
|
+
};
|
|
611
839
|
008FBF2D1628B79300BC5BE2 /* Sources */ = {
|
|
612
840
|
isa = PBXSourcesBuildPhase;
|
|
613
841
|
buildActionMask = 2147483647;
|
|
614
842
|
files = (
|
|
615
843
|
008FBF861628B7E800BC5BE2 /* core.c in Sources */,
|
|
616
|
-
008FBF871628B7E800BC5BE2 /* descriptor.c in Sources */,
|
|
617
|
-
008FBF881628B7E800BC5BE2 /* io.c in Sources */,
|
|
618
844
|
008FBF921628B7E800BC5BE2 /* darwin_usb.c in Sources */,
|
|
619
|
-
|
|
620
|
-
|
|
845
|
+
008FBF871628B7E800BC5BE2 /* descriptor.c in Sources */,
|
|
846
|
+
2018D95F24E453BA001589B2 /* events_posix.c in Sources */,
|
|
621
847
|
1438D77A17A2ED9F00166101 /* hotplug.c in Sources */,
|
|
622
|
-
|
|
848
|
+
008FBF881628B7E800BC5BE2 /* io.c in Sources */,
|
|
623
849
|
1438D77F17A2F0EA00166101 /* strerror.c in Sources */,
|
|
624
|
-
|
|
850
|
+
008FBFA01628B7E800BC5BE2 /* sync.c in Sources */,
|
|
851
|
+
008FBF9A1628B7E800BC5BE2 /* threads_posix.c in Sources */,
|
|
625
852
|
);
|
|
626
853
|
runOnlyForDeploymentPostprocessing = 0;
|
|
627
854
|
};
|
|
@@ -645,7 +872,7 @@
|
|
|
645
872
|
isa = PBXSourcesBuildPhase;
|
|
646
873
|
buildActionMask = 2147483647;
|
|
647
874
|
files = (
|
|
648
|
-
|
|
875
|
+
20951C0325630F5F00ED6351 /* dpfp.c in Sources */,
|
|
649
876
|
);
|
|
650
877
|
runOnlyForDeploymentPostprocessing = 0;
|
|
651
878
|
};
|
|
@@ -666,6 +893,22 @@
|
|
|
666
893
|
);
|
|
667
894
|
runOnlyForDeploymentPostprocessing = 0;
|
|
668
895
|
};
|
|
896
|
+
20468D63243298AE00650534 /* Sources */ = {
|
|
897
|
+
isa = PBXSourcesBuildPhase;
|
|
898
|
+
buildActionMask = 2147483647;
|
|
899
|
+
files = (
|
|
900
|
+
20468D70243298C100650534 /* sam3u_benchmark.c in Sources */,
|
|
901
|
+
);
|
|
902
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
903
|
+
};
|
|
904
|
+
20468D71243298D300650534 /* Sources */ = {
|
|
905
|
+
isa = PBXSourcesBuildPhase;
|
|
906
|
+
buildActionMask = 2147483647;
|
|
907
|
+
files = (
|
|
908
|
+
20468D7E2432990100650534 /* testlibusb.c in Sources */,
|
|
909
|
+
);
|
|
910
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
911
|
+
};
|
|
669
912
|
/* End PBXSourcesBuildPhase section */
|
|
670
913
|
|
|
671
914
|
/* Begin PBXTargetDependency section */
|
|
@@ -674,6 +917,11 @@
|
|
|
674
917
|
target = 006AD41B1C8C5A90007F8C6A /* hotplugtest */;
|
|
675
918
|
targetProxy = 006AD4271C8C5BBC007F8C6A /* PBXContainerItemProxy */;
|
|
676
919
|
};
|
|
920
|
+
008A23DE236C8619004854AA /* PBXTargetDependency */ = {
|
|
921
|
+
isa = PBXTargetDependency;
|
|
922
|
+
target = 008A23D2236C8594004854AA /* stress */;
|
|
923
|
+
targetProxy = 008A23DD236C8619004854AA /* PBXContainerItemProxy */;
|
|
924
|
+
};
|
|
677
925
|
008FC0371628BC9A00BC5BE2 /* PBXTargetDependency */ = {
|
|
678
926
|
isa = PBXTargetDependency;
|
|
679
927
|
target = 008FBF301628B79300BC5BE2 /* libusb */;
|
|
@@ -729,6 +977,36 @@
|
|
|
729
977
|
target = 008FBF301628B79300BC5BE2 /* libusb */;
|
|
730
978
|
targetProxy = 1443EE931641927D007E0579 /* PBXContainerItemProxy */;
|
|
731
979
|
};
|
|
980
|
+
20468D822432999C00650534 /* PBXTargetDependency */ = {
|
|
981
|
+
isa = PBXTargetDependency;
|
|
982
|
+
target = 008FBF301628B79300BC5BE2 /* libusb */;
|
|
983
|
+
targetProxy = 20468D812432999C00650534 /* PBXContainerItemProxy */;
|
|
984
|
+
};
|
|
985
|
+
20468D84243299A900650534 /* PBXTargetDependency */ = {
|
|
986
|
+
isa = PBXTargetDependency;
|
|
987
|
+
target = 008FBF301628B79300BC5BE2 /* libusb */;
|
|
988
|
+
targetProxy = 20468D83243299A900650534 /* PBXContainerItemProxy */;
|
|
989
|
+
};
|
|
990
|
+
20468D86243299B200650534 /* PBXTargetDependency */ = {
|
|
991
|
+
isa = PBXTargetDependency;
|
|
992
|
+
target = 008FBF301628B79300BC5BE2 /* libusb */;
|
|
993
|
+
targetProxy = 20468D85243299B200650534 /* PBXContainerItemProxy */;
|
|
994
|
+
};
|
|
995
|
+
20468D88243299BA00650534 /* PBXTargetDependency */ = {
|
|
996
|
+
isa = PBXTargetDependency;
|
|
997
|
+
target = 008FBF301628B79300BC5BE2 /* libusb */;
|
|
998
|
+
targetProxy = 20468D87243299BA00650534 /* PBXContainerItemProxy */;
|
|
999
|
+
};
|
|
1000
|
+
20468D8E24329E3800650534 /* PBXTargetDependency */ = {
|
|
1001
|
+
isa = PBXTargetDependency;
|
|
1002
|
+
target = 20468D66243298AE00650534 /* sam3u_benchmark */;
|
|
1003
|
+
targetProxy = 20468D8D24329E3800650534 /* PBXContainerItemProxy */;
|
|
1004
|
+
};
|
|
1005
|
+
20468D9024329E3F00650534 /* PBXTargetDependency */ = {
|
|
1006
|
+
isa = PBXTargetDependency;
|
|
1007
|
+
target = 20468D74243298D300650534 /* testlibusb */;
|
|
1008
|
+
targetProxy = 20468D8F24329E3F00650534 /* PBXContainerItemProxy */;
|
|
1009
|
+
};
|
|
732
1010
|
/* End PBXTargetDependency section */
|
|
733
1011
|
|
|
734
1012
|
/* Begin XCBuildConfiguration section */
|
|
@@ -736,6 +1014,7 @@
|
|
|
736
1014
|
isa = XCBuildConfiguration;
|
|
737
1015
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
738
1016
|
buildSettings = {
|
|
1017
|
+
CODE_SIGN_IDENTITY = "-";
|
|
739
1018
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
740
1019
|
};
|
|
741
1020
|
name = Debug;
|
|
@@ -744,6 +1023,25 @@
|
|
|
744
1023
|
isa = XCBuildConfiguration;
|
|
745
1024
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
746
1025
|
buildSettings = {
|
|
1026
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1027
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1028
|
+
};
|
|
1029
|
+
name = Release;
|
|
1030
|
+
};
|
|
1031
|
+
008A23D8236C8594004854AA /* Debug */ = {
|
|
1032
|
+
isa = XCBuildConfiguration;
|
|
1033
|
+
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
1034
|
+
buildSettings = {
|
|
1035
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1036
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1037
|
+
};
|
|
1038
|
+
name = Debug;
|
|
1039
|
+
};
|
|
1040
|
+
008A23D9236C8594004854AA /* Release */ = {
|
|
1041
|
+
isa = XCBuildConfiguration;
|
|
1042
|
+
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
1043
|
+
buildSettings = {
|
|
1044
|
+
CODE_SIGN_IDENTITY = "-";
|
|
747
1045
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
748
1046
|
};
|
|
749
1047
|
name = Release;
|
|
@@ -752,6 +1050,18 @@
|
|
|
752
1050
|
isa = XCBuildConfiguration;
|
|
753
1051
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
754
1052
|
buildSettings = {
|
|
1053
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1054
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1055
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1056
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1057
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1058
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1059
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1060
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1061
|
+
ENABLE_TESTABILITY = YES;
|
|
1062
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1063
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1064
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
755
1065
|
};
|
|
756
1066
|
name = Debug;
|
|
757
1067
|
};
|
|
@@ -759,6 +1069,16 @@
|
|
|
759
1069
|
isa = XCBuildConfiguration;
|
|
760
1070
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
761
1071
|
buildSettings = {
|
|
1072
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1073
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1074
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1075
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1076
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1077
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1078
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1079
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1080
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1081
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
762
1082
|
};
|
|
763
1083
|
name = Release;
|
|
764
1084
|
};
|
|
@@ -766,6 +1086,10 @@
|
|
|
766
1086
|
isa = XCBuildConfiguration;
|
|
767
1087
|
baseConfigurationReference = 1443EE8616417E63007E0579 /* libusb_debug.xcconfig */;
|
|
768
1088
|
buildSettings = {
|
|
1089
|
+
OTHER_CFLAGS = (
|
|
1090
|
+
"-fvisibility=hidden",
|
|
1091
|
+
"-pthread",
|
|
1092
|
+
);
|
|
769
1093
|
};
|
|
770
1094
|
name = Debug;
|
|
771
1095
|
};
|
|
@@ -773,6 +1097,10 @@
|
|
|
773
1097
|
isa = XCBuildConfiguration;
|
|
774
1098
|
baseConfigurationReference = 1443EE8916417EA6007E0579 /* libusb_release.xcconfig */;
|
|
775
1099
|
buildSettings = {
|
|
1100
|
+
OTHER_CFLAGS = (
|
|
1101
|
+
"-fvisibility=hidden",
|
|
1102
|
+
"-pthread",
|
|
1103
|
+
);
|
|
776
1104
|
};
|
|
777
1105
|
name = Release;
|
|
778
1106
|
};
|
|
@@ -780,6 +1108,7 @@
|
|
|
780
1108
|
isa = XCBuildConfiguration;
|
|
781
1109
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
782
1110
|
buildSettings = {
|
|
1111
|
+
CODE_SIGN_IDENTITY = "-";
|
|
783
1112
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
784
1113
|
};
|
|
785
1114
|
name = Debug;
|
|
@@ -788,6 +1117,7 @@
|
|
|
788
1117
|
isa = XCBuildConfiguration;
|
|
789
1118
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
790
1119
|
buildSettings = {
|
|
1120
|
+
CODE_SIGN_IDENTITY = "-";
|
|
791
1121
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
792
1122
|
};
|
|
793
1123
|
name = Release;
|
|
@@ -796,6 +1126,7 @@
|
|
|
796
1126
|
isa = XCBuildConfiguration;
|
|
797
1127
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
798
1128
|
buildSettings = {
|
|
1129
|
+
CODE_SIGN_IDENTITY = "-";
|
|
799
1130
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
800
1131
|
};
|
|
801
1132
|
name = Debug;
|
|
@@ -804,6 +1135,7 @@
|
|
|
804
1135
|
isa = XCBuildConfiguration;
|
|
805
1136
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
806
1137
|
buildSettings = {
|
|
1138
|
+
CODE_SIGN_IDENTITY = "-";
|
|
807
1139
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
808
1140
|
};
|
|
809
1141
|
name = Release;
|
|
@@ -812,6 +1144,8 @@
|
|
|
812
1144
|
isa = XCBuildConfiguration;
|
|
813
1145
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
814
1146
|
buildSettings = {
|
|
1147
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1148
|
+
OTHER_CFLAGS = "-pthread";
|
|
815
1149
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
816
1150
|
};
|
|
817
1151
|
name = Debug;
|
|
@@ -820,6 +1154,8 @@
|
|
|
820
1154
|
isa = XCBuildConfiguration;
|
|
821
1155
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
822
1156
|
buildSettings = {
|
|
1157
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1158
|
+
OTHER_CFLAGS = "-pthread";
|
|
823
1159
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
824
1160
|
};
|
|
825
1161
|
name = Release;
|
|
@@ -828,6 +1164,7 @@
|
|
|
828
1164
|
isa = XCBuildConfiguration;
|
|
829
1165
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
830
1166
|
buildSettings = {
|
|
1167
|
+
CODE_SIGN_IDENTITY = "-";
|
|
831
1168
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
832
1169
|
};
|
|
833
1170
|
name = Debug;
|
|
@@ -836,6 +1173,7 @@
|
|
|
836
1173
|
isa = XCBuildConfiguration;
|
|
837
1174
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
838
1175
|
buildSettings = {
|
|
1176
|
+
CODE_SIGN_IDENTITY = "-";
|
|
839
1177
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
840
1178
|
};
|
|
841
1179
|
name = Release;
|
|
@@ -844,6 +1182,7 @@
|
|
|
844
1182
|
isa = XCBuildConfiguration;
|
|
845
1183
|
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
846
1184
|
buildSettings = {
|
|
1185
|
+
CODE_SIGN_IDENTITY = "-";
|
|
847
1186
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
848
1187
|
};
|
|
849
1188
|
name = Debug;
|
|
@@ -852,6 +1191,7 @@
|
|
|
852
1191
|
isa = XCBuildConfiguration;
|
|
853
1192
|
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
854
1193
|
buildSettings = {
|
|
1194
|
+
CODE_SIGN_IDENTITY = "-";
|
|
855
1195
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
856
1196
|
};
|
|
857
1197
|
name = Release;
|
|
@@ -859,13 +1199,47 @@
|
|
|
859
1199
|
008FC0341628BC9400BC5BE2 /* Debug */ = {
|
|
860
1200
|
isa = XCBuildConfiguration;
|
|
861
1201
|
buildSettings = {
|
|
862
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
863
1202
|
};
|
|
864
1203
|
name = Debug;
|
|
865
1204
|
};
|
|
866
1205
|
008FC0351628BC9400BC5BE2 /* Release */ = {
|
|
867
1206
|
isa = XCBuildConfiguration;
|
|
868
1207
|
buildSettings = {
|
|
1208
|
+
};
|
|
1209
|
+
name = Release;
|
|
1210
|
+
};
|
|
1211
|
+
20468D6C243298AE00650534 /* Debug */ = {
|
|
1212
|
+
isa = XCBuildConfiguration;
|
|
1213
|
+
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
1214
|
+
buildSettings = {
|
|
1215
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1216
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1217
|
+
};
|
|
1218
|
+
name = Debug;
|
|
1219
|
+
};
|
|
1220
|
+
20468D6D243298AE00650534 /* Release */ = {
|
|
1221
|
+
isa = XCBuildConfiguration;
|
|
1222
|
+
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
1223
|
+
buildSettings = {
|
|
1224
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1225
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1226
|
+
};
|
|
1227
|
+
name = Release;
|
|
1228
|
+
};
|
|
1229
|
+
20468D7A243298D300650534 /* Debug */ = {
|
|
1230
|
+
isa = XCBuildConfiguration;
|
|
1231
|
+
baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
|
|
1232
|
+
buildSettings = {
|
|
1233
|
+
CODE_SIGN_IDENTITY = "-";
|
|
1234
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1235
|
+
};
|
|
1236
|
+
name = Debug;
|
|
1237
|
+
};
|
|
1238
|
+
20468D7B243298D300650534 /* Release */ = {
|
|
1239
|
+
isa = XCBuildConfiguration;
|
|
1240
|
+
baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
|
|
1241
|
+
buildSettings = {
|
|
1242
|
+
CODE_SIGN_IDENTITY = "-";
|
|
869
1243
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
870
1244
|
};
|
|
871
1245
|
name = Release;
|
|
@@ -880,6 +1254,16 @@
|
|
|
880
1254
|
006AD4211C8C5A90007F8C6A /* Release */,
|
|
881
1255
|
);
|
|
882
1256
|
defaultConfigurationIsVisible = 0;
|
|
1257
|
+
defaultConfigurationName = Release;
|
|
1258
|
+
};
|
|
1259
|
+
008A23D7236C8594004854AA /* Build configuration list for PBXNativeTarget "stress" */ = {
|
|
1260
|
+
isa = XCConfigurationList;
|
|
1261
|
+
buildConfigurations = (
|
|
1262
|
+
008A23D8236C8594004854AA /* Debug */,
|
|
1263
|
+
008A23D9236C8594004854AA /* Release */,
|
|
1264
|
+
);
|
|
1265
|
+
defaultConfigurationIsVisible = 0;
|
|
1266
|
+
defaultConfigurationName = Release;
|
|
883
1267
|
};
|
|
884
1268
|
008FBF2B1628B79300BC5BE2 /* Build configuration list for PBXProject "libusb" */ = {
|
|
885
1269
|
isa = XCConfigurationList;
|
|
@@ -953,6 +1337,24 @@
|
|
|
953
1337
|
defaultConfigurationIsVisible = 0;
|
|
954
1338
|
defaultConfigurationName = Release;
|
|
955
1339
|
};
|
|
1340
|
+
20468D6B243298AE00650534 /* Build configuration list for PBXNativeTarget "sam3u_benchmark" */ = {
|
|
1341
|
+
isa = XCConfigurationList;
|
|
1342
|
+
buildConfigurations = (
|
|
1343
|
+
20468D6C243298AE00650534 /* Debug */,
|
|
1344
|
+
20468D6D243298AE00650534 /* Release */,
|
|
1345
|
+
);
|
|
1346
|
+
defaultConfigurationIsVisible = 0;
|
|
1347
|
+
defaultConfigurationName = Release;
|
|
1348
|
+
};
|
|
1349
|
+
20468D79243298D300650534 /* Build configuration list for PBXNativeTarget "testlibusb" */ = {
|
|
1350
|
+
isa = XCConfigurationList;
|
|
1351
|
+
buildConfigurations = (
|
|
1352
|
+
20468D7A243298D300650534 /* Debug */,
|
|
1353
|
+
20468D7B243298D300650534 /* Release */,
|
|
1354
|
+
);
|
|
1355
|
+
defaultConfigurationIsVisible = 0;
|
|
1356
|
+
defaultConfigurationName = Release;
|
|
1357
|
+
};
|
|
956
1358
|
/* End XCConfigurationList section */
|
|
957
1359
|
};
|
|
958
1360
|
rootObject = 008FBF281628B79300BC5BE2 /* Project object */;
|