├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── build ├── CMakeCache.txt ├── CMakeFiles │ ├── 3.3.1 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ ├── feature_tests.bin │ ├── feature_tests.c │ ├── feature_tests.cxx │ ├── node-link.dir │ │ ├── DependInfo.cmake │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── flags.make │ │ ├── link.txt │ │ └── progress.make │ └── progress.marks ├── Makefile ├── Release │ └── node-link.node └── cmake_install.cmake ├── node-link.cc ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/node,cmake,visualstudiocode 3 | # Edit at https://www.gitignore.io/?templates=node,cmake,visualstudiocode 4 | 5 | ### CMake ### 6 | CMakeLists.txt.user 7 | CMakeCache.txt 8 | CMakeFiles 9 | CMakeScripts 10 | Testing 11 | Makefile 12 | cmake_install.cmake 13 | install_manifest.txt 14 | compile_commands.json 15 | CTestTestfile.cmake 16 | _deps 17 | 18 | ### CMake Patch ### 19 | # External projects 20 | *-prefix/ 21 | 22 | ### Node ### 23 | # Logs 24 | logs 25 | *.log 26 | npm-debug.log* 27 | yarn-debug.log* 28 | yarn-error.log* 29 | lerna-debug.log* 30 | 31 | # Diagnostic reports (https://nodejs.org/api/report.html) 32 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 33 | 34 | # Runtime data 35 | pids 36 | *.pid 37 | *.seed 38 | *.pid.lock 39 | 40 | # Directory for instrumented libs generated by jscoverage/JSCover 41 | lib-cov 42 | 43 | # Coverage directory used by tools like istanbul 44 | coverage 45 | *.lcov 46 | 47 | # nyc test coverage 48 | .nyc_output 49 | 50 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 51 | .grunt 52 | 53 | # Bower dependency directory (https://bower.io/) 54 | bower_components 55 | 56 | # node-waf configuration 57 | .lock-wscript 58 | 59 | # Compiled binary addons (https://nodejs.org/api/addons.html) 60 | build/Release 61 | 62 | # Dependency directories 63 | node_modules/ 64 | jspm_packages/ 65 | 66 | # TypeScript v1 declaration files 67 | typings/ 68 | 69 | # TypeScript cache 70 | *.tsbuildinfo 71 | 72 | # Optional npm cache directory 73 | .npm 74 | 75 | # Optional eslint cache 76 | .eslintcache 77 | 78 | # Optional REPL history 79 | .node_repl_history 80 | 81 | # Output of 'npm pack' 82 | *.tgz 83 | 84 | # Yarn Integrity file 85 | .yarn-integrity 86 | 87 | # dotenv environment variables file 88 | .env 89 | .env.test 90 | 91 | # parcel-bundler cache (https://parceljs.org/) 92 | .cache 93 | 94 | # next.js build output 95 | .next 96 | 97 | # nuxt.js build output 98 | .nuxt 99 | 100 | # react / gatsby 101 | public/ 102 | 103 | # vuepress build output 104 | .vuepress/dist 105 | 106 | # Serverless directories 107 | .serverless/ 108 | 109 | # FuseBox cache 110 | .fusebox/ 111 | 112 | # DynamoDB Local files 113 | .dynamodb/ 114 | 115 | ### VisualStudioCode ### 116 | .vscode/* 117 | !.vscode/settings.json 118 | !.vscode/tasks.json 119 | !.vscode/launch.json 120 | !.vscode/extensions.json 121 | 122 | ### VisualStudioCode Patch ### 123 | # Ignore all local history of files 124 | .history 125 | 126 | # End of https://www.gitignore.io/api/node,cmake,visualstudiocode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "link"] 2 | path = link 3 | url = https://github.com/Ableton/link.git 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.2) 2 | 3 | # Name of the project (will be the name of the plugin) 4 | project(node-link) 5 | 6 | # Boost dependency 7 | 8 | # Include BoostLib module 9 | file(GLOB_RECURSE boostlib_cmake_path "${CMAKE_CURRENT_SOURCE_DIR}/node_modules" "BoostLib.cmake") 10 | list(GET boostlib_cmake_path 0 boostlib_cmake_path) 11 | 12 | get_filename_component(boostlib_cmake_path "${boostlib_cmake_path}" DIRECTORY) 13 | SET(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${boostlib_cmake_path}") 14 | include(BoostLib) 15 | 16 | 17 | # Essential include files to build a node addon, 18 | # you should add this line in every CMake.js based project. 19 | include_directories(${CMAKE_JS_INC}) 20 | 21 | # This line will tell CMake that we're building a shared library 22 | # from the above source files 23 | # named after the project's name 24 | add_library(${PROJECT_NAME} SHARED ${SOURCE_FILES}) 25 | 26 | # This line will give our library file a .node extension without any "lib" prefix 27 | set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "" SUFFIX ".node") 28 | set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) 29 | 30 | 31 | # Essential library files to link to a node addon, 32 | # you should add this line in every CMake.js based project. 33 | # Define Boost dependencies there. 34 | target_link_libraries(${PROJECT_NAME} ${CMAKE_JS_LIB};${Boost_LIBRARIES}) 35 | 36 | 37 | include(link/AbletonLinkConfig.cmake) 38 | target_link_libraries(${PROJECT_NAME} Ableton::Link) 39 | 40 | # Declare the location of the source files 41 | file(GLOB SOURCE_FILES "node-link.cc") 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # node-link 2 | Ableton Link Library Wrapping For Node.js 3 | -------------------------------------------------------------------------------- /build/CMakeCache.txt: -------------------------------------------------------------------------------- 1 | # This is the CMakeCache file. 2 | # For build in directory: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build 3 | # It was generated by CMake: /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake 4 | # You can edit this file to change values found and used by cmake. 5 | # If you do not want to change any of the values, simply exit the editor. 6 | # If you do want to change a value, simply edit, save, and exit the editor. 7 | # The syntax for the file is as follows: 8 | # KEY:TYPE=VALUE 9 | # KEY is the name of a variable in the cache. 10 | # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. 11 | # VALUE is the current value for the KEY. 12 | 13 | ######################## 14 | # EXTERNAL cache entries 15 | ######################## 16 | 17 | //Path to a program. 18 | CMAKE_AR:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar 19 | 20 | //Choose the type of build, options are: None(CMAKE_CXX_FLAGS or 21 | // CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. 22 | CMAKE_BUILD_TYPE:STRING=Release 23 | 24 | //Enable/Disable color output during build. 25 | CMAKE_COLOR_MAKEFILE:BOOL=ON 26 | 27 | //CXX compiler 28 | CMAKE_CXX_COMPILER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ 29 | 30 | //Flags used by the compiler during all build types. 31 | CMAKE_CXX_FLAGS:STRING=-std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w 32 | 33 | //Flags used by the compiler during debug builds. 34 | CMAKE_CXX_FLAGS_DEBUG:STRING=-g 35 | 36 | //Flags used by the compiler during release builds for minimum 37 | // size. 38 | CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG 39 | 40 | //Flags used by the compiler during release builds. 41 | CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG 42 | 43 | //Flags used by the compiler during release builds with debug info. 44 | CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG 45 | 46 | //C compiler 47 | CMAKE_C_COMPILER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc 48 | 49 | //Flags used by the compiler during all build types. 50 | CMAKE_C_FLAGS:STRING= 51 | 52 | //Flags used by the compiler during debug builds. 53 | CMAKE_C_FLAGS_DEBUG:STRING=-g 54 | 55 | //Flags used by the compiler during release builds for minimum 56 | // size. 57 | CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG 58 | 59 | //Flags used by the compiler during release builds. 60 | CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG 61 | 62 | //Flags used by the compiler during release builds with debug info. 63 | CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG 64 | 65 | //Flags used by the linker. 66 | CMAKE_EXE_LINKER_FLAGS:STRING= 67 | 68 | //Flags used by the linker during debug builds. 69 | CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= 70 | 71 | //Flags used by the linker during release minsize builds. 72 | CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= 73 | 74 | //Flags used by the linker during release builds. 75 | CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= 76 | 77 | //Flags used by the linker during Release with Debug Info builds. 78 | CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= 79 | 80 | //Enable/Disable output of compile commands during generation. 81 | CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF 82 | 83 | //Path to a program. 84 | CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool 85 | 86 | //Install path prefix, prepended onto install directories. 87 | CMAKE_INSTALL_PREFIX:PATH=/usr/local 88 | 89 | //No help, variable specified on the command line. 90 | CMAKE_JS_INC:UNINITIALIZED=/Volumes/BNSWORKS/cloudedhazelnut/.cmake-js/node-x64/v6.2.2/include/node 91 | 92 | //No help, variable specified on the command line. 93 | CMAKE_JS_VERSION:UNINITIALIZED=3.3.1 94 | 95 | //No help, variable specified on the command line. 96 | CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/Release 97 | 98 | //Path to a program. 99 | CMAKE_LINKER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld 100 | 101 | //Path to a program. 102 | CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make 103 | 104 | //Flags used by the linker during the creation of modules. 105 | CMAKE_MODULE_LINKER_FLAGS:STRING= 106 | 107 | //Flags used by the linker during debug builds. 108 | CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= 109 | 110 | //Flags used by the linker during release minsize builds. 111 | CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= 112 | 113 | //Flags used by the linker during release builds. 114 | CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= 115 | 116 | //Flags used by the linker during Release with Debug Info builds. 117 | CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= 118 | 119 | //Path to a program. 120 | CMAKE_NM:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm 121 | 122 | //Path to a program. 123 | CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND 124 | 125 | //Path to a program. 126 | CMAKE_OBJDUMP:FILEPATH=CMAKE_OBJDUMP-NOTFOUND 127 | 128 | //Build architectures for OSX 129 | CMAKE_OSX_ARCHITECTURES:STRING= 130 | 131 | //Minimum OS X version to target for deployment (at runtime); newer 132 | // APIs weak linked. Set to empty string for default value. 133 | CMAKE_OSX_DEPLOYMENT_TARGET:STRING= 134 | 135 | //The product will be built against the headers and libraries located 136 | // inside the indicated SDK. 137 | CMAKE_OSX_SYSROOT:STRING= 138 | 139 | //Value Computed by CMake 140 | CMAKE_PROJECT_NAME:STATIC=node-link 141 | 142 | //Path to a program. 143 | CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib 144 | 145 | //Flags used by the linker during the creation of dll's. 146 | CMAKE_SHARED_LINKER_FLAGS:STRING=-undefined dynamic_lookup 147 | 148 | //Flags used by the linker during debug builds. 149 | CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= 150 | 151 | //Flags used by the linker during release minsize builds. 152 | CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= 153 | 154 | //Flags used by the linker during release builds. 155 | CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= 156 | 157 | //Flags used by the linker during Release with Debug Info builds. 158 | CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= 159 | 160 | //If set, runtime paths are not added when installing shared libraries, 161 | // but are added when building. 162 | CMAKE_SKIP_INSTALL_RPATH:BOOL=NO 163 | 164 | //If set, runtime paths are not added when using shared libraries. 165 | CMAKE_SKIP_RPATH:BOOL=NO 166 | 167 | //Flags used by the linker during the creation of static libraries. 168 | CMAKE_STATIC_LINKER_FLAGS:STRING= 169 | 170 | //Flags used by the linker during debug builds. 171 | CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= 172 | 173 | //Flags used by the linker during release minsize builds. 174 | CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= 175 | 176 | //Flags used by the linker during release builds. 177 | CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= 178 | 179 | //Flags used by the linker during Release with Debug Info builds. 180 | CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= 181 | 182 | //Path to a program. 183 | CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip 184 | 185 | //If true, cmake will use relative paths in makefiles and projects. 186 | CMAKE_USE_RELATIVE_PATHS:BOOL=OFF 187 | 188 | //If this value is on, makefiles will be generated without the 189 | // .SILENT directive, and all commands will be echoed to the console 190 | // during the make. This is useful for debugging only. With Visual 191 | // Studio IDE projects all commands are done without /nologo. 192 | CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE 193 | 194 | //No help, variable specified on the command line. 195 | NODE_ARCH:UNINITIALIZED=x64 196 | 197 | //No help, variable specified on the command line. 198 | NODE_RUNTIME:UNINITIALIZED=node 199 | 200 | //No help, variable specified on the command line. 201 | NODE_RUNTIMEVERSION:UNINITIALIZED=6.2.2 202 | 203 | //Value Computed by CMake 204 | node-link_BINARY_DIR:STATIC=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build 205 | 206 | //Dependencies for target 207 | node-link_LIB_DEPENDS:STATIC= 208 | 209 | //Value Computed by CMake 210 | node-link_SOURCE_DIR:STATIC=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link 211 | 212 | 213 | ######################## 214 | # INTERNAL cache entries 215 | ######################## 216 | 217 | //ADVANCED property for variable: CMAKE_AR 218 | CMAKE_AR-ADVANCED:INTERNAL=1 219 | //This is the directory where this CMakeCache.txt was created 220 | CMAKE_CACHEFILE_DIR:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build 221 | //Major version of cmake used to create the current loaded cache 222 | CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 223 | //Minor version of cmake used to create the current loaded cache 224 | CMAKE_CACHE_MINOR_VERSION:INTERNAL=3 225 | //Patch version of cmake used to create the current loaded cache 226 | CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 227 | //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE 228 | CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 229 | //Path to CMake executable. 230 | CMAKE_COMMAND:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake 231 | //Path to cpack program executable. 232 | CMAKE_CPACK_COMMAND:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cpack 233 | //Path to ctest program executable. 234 | CMAKE_CTEST_COMMAND:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/ctest 235 | //ADVANCED property for variable: CMAKE_CXX_COMPILER 236 | CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 237 | //ADVANCED property for variable: CMAKE_CXX_FLAGS 238 | CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 239 | //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG 240 | CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 241 | //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL 242 | CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 243 | //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE 244 | CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 245 | //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO 246 | CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 247 | //ADVANCED property for variable: CMAKE_C_COMPILER 248 | CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 249 | //ADVANCED property for variable: CMAKE_C_FLAGS 250 | CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 251 | //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG 252 | CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 253 | //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL 254 | CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 255 | //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE 256 | CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 257 | //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO 258 | CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 259 | //Path to cache edit program executable. 260 | CMAKE_EDIT_COMMAND:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/ccmake 261 | //Executable file format 262 | CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown 263 | //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS 264 | CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 265 | //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG 266 | CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 267 | //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL 268 | CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 269 | //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE 270 | CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 271 | //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO 272 | CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 273 | //ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS 274 | CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 275 | //Name of external makefile project generator. 276 | CMAKE_EXTRA_GENERATOR:INTERNAL= 277 | //Name of generator. 278 | CMAKE_GENERATOR:INTERNAL=Unix Makefiles 279 | //Name of generator platform. 280 | CMAKE_GENERATOR_PLATFORM:INTERNAL= 281 | //Name of generator toolset. 282 | CMAKE_GENERATOR_TOOLSET:INTERNAL= 283 | //Source directory with the top level CMakeLists.txt file for this 284 | // project 285 | CMAKE_HOME_DIRECTORY:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link 286 | //ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL 287 | CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 288 | //ADVANCED property for variable: CMAKE_LINKER 289 | CMAKE_LINKER-ADVANCED:INTERNAL=1 290 | //ADVANCED property for variable: CMAKE_MAKE_PROGRAM 291 | CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 292 | //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS 293 | CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 294 | //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG 295 | CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 296 | //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL 297 | CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 298 | //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE 299 | CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 300 | //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO 301 | CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 302 | //ADVANCED property for variable: CMAKE_NM 303 | CMAKE_NM-ADVANCED:INTERNAL=1 304 | //number of local generators 305 | CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=1 306 | //ADVANCED property for variable: CMAKE_OBJCOPY 307 | CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 308 | //ADVANCED property for variable: CMAKE_OBJDUMP 309 | CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 310 | //ADVANCED property for variable: CMAKE_RANLIB 311 | CMAKE_RANLIB-ADVANCED:INTERNAL=1 312 | //Path to CMake installation. 313 | CMAKE_ROOT:INTERNAL=/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3 314 | //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS 315 | CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 316 | //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG 317 | CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 318 | //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL 319 | CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 320 | //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE 321 | CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 322 | //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO 323 | CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 324 | //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH 325 | CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 326 | //ADVANCED property for variable: CMAKE_SKIP_RPATH 327 | CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 328 | //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS 329 | CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 330 | //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG 331 | CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 332 | //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL 333 | CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 334 | //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE 335 | CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 336 | //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO 337 | CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 338 | //ADVANCED property for variable: CMAKE_STRIP 339 | CMAKE_STRIP-ADVANCED:INTERNAL=1 340 | //uname command 341 | CMAKE_UNAME:INTERNAL=/usr/bin/uname 342 | //ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS 343 | CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1 344 | //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE 345 | CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 346 | 347 | -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc") 2 | set(CMAKE_C_COMPILER_ARG1 "") 3 | set(CMAKE_C_COMPILER_ID "AppleClang") 4 | set(CMAKE_C_COMPILER_VERSION "7.3.0.7030029") 5 | set(CMAKE_C_COMPILE_FEATURES "c_function_prototypes;c_restrict;c_variadic_macros;c_static_assert") 6 | set(CMAKE_C90_COMPILE_FEATURES "c_function_prototypes") 7 | set(CMAKE_C99_COMPILE_FEATURES "c_restrict;c_variadic_macros") 8 | set(CMAKE_C11_COMPILE_FEATURES "c_static_assert") 9 | 10 | set(CMAKE_C_PLATFORM_ID "Darwin") 11 | set(CMAKE_C_SIMULATE_ID "") 12 | set(CMAKE_C_SIMULATE_VERSION "") 13 | 14 | set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar") 15 | set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib") 16 | set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld") 17 | set(CMAKE_COMPILER_IS_GNUCC ) 18 | set(CMAKE_C_COMPILER_LOADED 1) 19 | set(CMAKE_C_COMPILER_WORKS TRUE) 20 | set(CMAKE_C_ABI_COMPILED TRUE) 21 | set(CMAKE_COMPILER_IS_MINGW ) 22 | set(CMAKE_COMPILER_IS_CYGWIN ) 23 | if(CMAKE_COMPILER_IS_CYGWIN) 24 | set(CYGWIN 1) 25 | set(UNIX 1) 26 | endif() 27 | 28 | set(CMAKE_C_COMPILER_ENV_VAR "CC") 29 | 30 | if(CMAKE_COMPILER_IS_MINGW) 31 | set(MINGW 1) 32 | endif() 33 | set(CMAKE_C_COMPILER_ID_RUN 1) 34 | set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) 35 | set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) 36 | set(CMAKE_C_LINKER_PREFERENCE 10) 37 | 38 | # Save compiler ABI information. 39 | set(CMAKE_C_SIZEOF_DATA_PTR "8") 40 | set(CMAKE_C_COMPILER_ABI "") 41 | set(CMAKE_C_LIBRARY_ARCHITECTURE "") 42 | 43 | if(CMAKE_C_SIZEOF_DATA_PTR) 44 | set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") 45 | endif() 46 | 47 | if(CMAKE_C_COMPILER_ABI) 48 | set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") 49 | endif() 50 | 51 | if(CMAKE_C_LIBRARY_ARCHITECTURE) 52 | set(CMAKE_LIBRARY_ARCHITECTURE "") 53 | endif() 54 | 55 | 56 | 57 | 58 | set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a") 59 | set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib;/usr/local/lib") 60 | set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Frameworks;/System/Library/Frameworks") 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++") 2 | set(CMAKE_CXX_COMPILER_ARG1 "") 3 | set(CMAKE_CXX_COMPILER_ID "AppleClang") 4 | set(CMAKE_CXX_COMPILER_VERSION "7.3.0.7030029") 5 | set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") 6 | set(CMAKE_CXX98_COMPILE_FEATURES "cxx_template_template_parameters") 7 | set(CMAKE_CXX11_COMPILE_FEATURES "cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") 8 | set(CMAKE_CXX14_COMPILE_FEATURES "cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") 9 | 10 | set(CMAKE_CXX_PLATFORM_ID "Darwin") 11 | set(CMAKE_CXX_SIMULATE_ID "") 12 | set(CMAKE_CXX_SIMULATE_VERSION "") 13 | 14 | set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar") 15 | set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib") 16 | set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld") 17 | set(CMAKE_COMPILER_IS_GNUCXX ) 18 | set(CMAKE_CXX_COMPILER_LOADED 1) 19 | set(CMAKE_CXX_COMPILER_WORKS TRUE) 20 | set(CMAKE_CXX_ABI_COMPILED TRUE) 21 | set(CMAKE_COMPILER_IS_MINGW ) 22 | set(CMAKE_COMPILER_IS_CYGWIN ) 23 | if(CMAKE_COMPILER_IS_CYGWIN) 24 | set(CYGWIN 1) 25 | set(UNIX 1) 26 | endif() 27 | 28 | set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") 29 | 30 | if(CMAKE_COMPILER_IS_MINGW) 31 | set(MINGW 1) 32 | endif() 33 | set(CMAKE_CXX_COMPILER_ID_RUN 1) 34 | set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) 35 | set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) 36 | set(CMAKE_CXX_LINKER_PREFERENCE 30) 37 | set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) 38 | 39 | # Save compiler ABI information. 40 | set(CMAKE_CXX_SIZEOF_DATA_PTR "8") 41 | set(CMAKE_CXX_COMPILER_ABI "") 42 | set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") 43 | 44 | if(CMAKE_CXX_SIZEOF_DATA_PTR) 45 | set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") 46 | endif() 47 | 48 | if(CMAKE_CXX_COMPILER_ABI) 49 | set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") 50 | endif() 51 | 52 | if(CMAKE_CXX_LIBRARY_ARCHITECTURE) 53 | set(CMAKE_LIBRARY_ARCHITECTURE "") 54 | endif() 55 | 56 | 57 | 58 | 59 | set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a") 60 | set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib;/usr/local/lib") 61 | set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Frameworks;/System/Library/Frameworks") 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoonHaKim/node-link/fbf823dcf1fbebcf7903dee289e9a7e3d334498b/build/CMakeFiles/3.3.1/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoonHaKim/node-link/fbf823dcf1fbebcf7903dee289e9a7e3d334498b/build/CMakeFiles/3.3.1/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Darwin-15.6.0") 2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin") 3 | set(CMAKE_HOST_SYSTEM_VERSION "15.6.0") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") 5 | 6 | 7 | 8 | set(CMAKE_SYSTEM "Darwin-15.6.0") 9 | set(CMAKE_SYSTEM_NAME "Darwin") 10 | set(CMAKE_SYSTEM_VERSION "15.6.0") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "FALSE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- 1 | #ifdef __cplusplus 2 | # error "A C++ compiler has been selected for C." 3 | #endif 4 | 5 | #if defined(__18CXX) 6 | # define ID_VOID_MAIN 7 | #endif 8 | 9 | 10 | /* Version number components: V=Version, R=Revision, P=Patch 11 | Version date components: YYYY=Year, MM=Month, DD=Day */ 12 | 13 | #if defined(__INTEL_COMPILER) || defined(__ICC) 14 | # define COMPILER_ID "Intel" 15 | # if defined(_MSC_VER) 16 | # define SIMULATE_ID "MSVC" 17 | # endif 18 | /* __INTEL_COMPILER = VRP */ 19 | # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) 20 | # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) 21 | # if defined(__INTEL_COMPILER_UPDATE) 22 | # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) 23 | # else 24 | # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) 25 | # endif 26 | # if defined(__INTEL_COMPILER_BUILD_DATE) 27 | /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ 28 | # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) 29 | # endif 30 | # if defined(_MSC_VER) 31 | /* _MSC_VER = VVRR */ 32 | # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) 33 | # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) 34 | # endif 35 | 36 | #elif defined(__PATHCC__) 37 | # define COMPILER_ID "PathScale" 38 | # define COMPILER_VERSION_MAJOR DEC(__PATHCC__) 39 | # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) 40 | # if defined(__PATHCC_PATCHLEVEL__) 41 | # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) 42 | # endif 43 | 44 | #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) 45 | # define COMPILER_ID "Embarcadero" 46 | # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) 47 | # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) 48 | # define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) 49 | 50 | #elif defined(__BORLANDC__) 51 | # define COMPILER_ID "Borland" 52 | /* __BORLANDC__ = 0xVRR */ 53 | # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) 54 | # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) 55 | 56 | #elif defined(__WATCOMC__) && __WATCOMC__ < 1200 57 | # define COMPILER_ID "Watcom" 58 | /* __WATCOMC__ = VVRR */ 59 | # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) 60 | # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) 61 | # if (__WATCOMC__ % 10) > 0 62 | # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) 63 | # endif 64 | 65 | #elif defined(__WATCOMC__) 66 | # define COMPILER_ID "OpenWatcom" 67 | /* __WATCOMC__ = VVRP + 1100 */ 68 | # define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) 69 | # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) 70 | # if (__WATCOMC__ % 10) > 0 71 | # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) 72 | # endif 73 | 74 | #elif defined(__SUNPRO_C) 75 | # define COMPILER_ID "SunPro" 76 | # if __SUNPRO_C >= 0x5100 77 | /* __SUNPRO_C = 0xVRRP */ 78 | # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) 79 | # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) 80 | # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) 81 | # else 82 | /* __SUNPRO_CC = 0xVRP */ 83 | # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) 84 | # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) 85 | # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) 86 | # endif 87 | 88 | #elif defined(__HP_cc) 89 | # define COMPILER_ID "HP" 90 | /* __HP_cc = VVRRPP */ 91 | # define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) 92 | # define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) 93 | # define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) 94 | 95 | #elif defined(__DECC) 96 | # define COMPILER_ID "Compaq" 97 | /* __DECC_VER = VVRRTPPPP */ 98 | # define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) 99 | # define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) 100 | # define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) 101 | 102 | #elif defined(__IBMC__) && defined(__COMPILER_VER__) 103 | # define COMPILER_ID "zOS" 104 | /* __IBMC__ = VRP */ 105 | # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) 106 | # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) 107 | # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) 108 | 109 | #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 110 | # define COMPILER_ID "XL" 111 | /* __IBMC__ = VRP */ 112 | # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) 113 | # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) 114 | # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) 115 | 116 | #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 117 | # define COMPILER_ID "VisualAge" 118 | /* __IBMC__ = VRP */ 119 | # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) 120 | # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) 121 | # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) 122 | 123 | #elif defined(__PGI) 124 | # define COMPILER_ID "PGI" 125 | # define COMPILER_VERSION_MAJOR DEC(__PGIC__) 126 | # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) 127 | # if defined(__PGIC_PATCHLEVEL__) 128 | # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) 129 | # endif 130 | 131 | #elif defined(_CRAYC) 132 | # define COMPILER_ID "Cray" 133 | # define COMPILER_VERSION_MAJOR DEC(_RELEASE) 134 | # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) 135 | 136 | #elif defined(__TI_COMPILER_VERSION__) 137 | # define COMPILER_ID "TI" 138 | /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ 139 | # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) 140 | # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) 141 | # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) 142 | 143 | #elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) 144 | # define COMPILER_ID "Fujitsu" 145 | 146 | #elif defined(__TINYC__) 147 | # define COMPILER_ID "TinyCC" 148 | 149 | #elif defined(__SCO_VERSION__) 150 | # define COMPILER_ID "SCO" 151 | 152 | #elif defined(__clang__) && defined(__apple_build_version__) 153 | # define COMPILER_ID "AppleClang" 154 | # if defined(_MSC_VER) 155 | # define SIMULATE_ID "MSVC" 156 | # endif 157 | # define COMPILER_VERSION_MAJOR DEC(__clang_major__) 158 | # define COMPILER_VERSION_MINOR DEC(__clang_minor__) 159 | # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) 160 | # if defined(_MSC_VER) 161 | /* _MSC_VER = VVRR */ 162 | # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) 163 | # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) 164 | # endif 165 | # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) 166 | 167 | #elif defined(__clang__) 168 | # define COMPILER_ID "Clang" 169 | # if defined(_MSC_VER) 170 | # define SIMULATE_ID "MSVC" 171 | # endif 172 | # define COMPILER_VERSION_MAJOR DEC(__clang_major__) 173 | # define COMPILER_VERSION_MINOR DEC(__clang_minor__) 174 | # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) 175 | # if defined(_MSC_VER) 176 | /* _MSC_VER = VVRR */ 177 | # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) 178 | # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) 179 | # endif 180 | 181 | #elif defined(__GNUC__) 182 | # define COMPILER_ID "GNU" 183 | # define COMPILER_VERSION_MAJOR DEC(__GNUC__) 184 | # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) 185 | # if defined(__GNUC_PATCHLEVEL__) 186 | # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) 187 | # endif 188 | 189 | #elif defined(_MSC_VER) 190 | # define COMPILER_ID "MSVC" 191 | /* _MSC_VER = VVRR */ 192 | # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) 193 | # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) 194 | # if defined(_MSC_FULL_VER) 195 | # if _MSC_VER >= 1400 196 | /* _MSC_FULL_VER = VVRRPPPPP */ 197 | # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) 198 | # else 199 | /* _MSC_FULL_VER = VVRRPPPP */ 200 | # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) 201 | # endif 202 | # endif 203 | # if defined(_MSC_BUILD) 204 | # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) 205 | # endif 206 | 207 | #elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) 208 | # define COMPILER_ID "ADSP" 209 | #if defined(__VISUALDSPVERSION__) 210 | /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ 211 | # define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) 212 | # define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) 213 | # define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) 214 | #endif 215 | 216 | #elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC) 217 | # define COMPILER_ID "IAR" 218 | 219 | #elif defined(SDCC) 220 | # define COMPILER_ID "SDCC" 221 | /* SDCC = VRP */ 222 | # define COMPILER_VERSION_MAJOR DEC(SDCC/100) 223 | # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) 224 | # define COMPILER_VERSION_PATCH DEC(SDCC % 10) 225 | 226 | #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) 227 | # define COMPILER_ID "MIPSpro" 228 | # if defined(_SGI_COMPILER_VERSION) 229 | /* _SGI_COMPILER_VERSION = VRP */ 230 | # define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) 231 | # define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) 232 | # define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) 233 | # else 234 | /* _COMPILER_VERSION = VRP */ 235 | # define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) 236 | # define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) 237 | # define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) 238 | # endif 239 | 240 | 241 | /* These compilers are either not known or too old to define an 242 | identification macro. Try to identify the platform and guess that 243 | it is the native compiler. */ 244 | #elif defined(__sgi) 245 | # define COMPILER_ID "MIPSpro" 246 | 247 | #elif defined(__hpux) || defined(__hpua) 248 | # define COMPILER_ID "HP" 249 | 250 | #else /* unknown compiler */ 251 | # define COMPILER_ID "" 252 | #endif 253 | 254 | /* Construct the string literal in pieces to prevent the source from 255 | getting matched. Store it in a pointer rather than an array 256 | because some compilers will just produce instructions to fill the 257 | array rather than assigning a pointer to a static array. */ 258 | char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; 259 | #ifdef SIMULATE_ID 260 | char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; 261 | #endif 262 | 263 | #ifdef __QNXNTO__ 264 | char const* qnxnto = "INFO" ":" "qnxnto[]"; 265 | #endif 266 | 267 | #define STRINGIFY_HELPER(X) #X 268 | #define STRINGIFY(X) STRINGIFY_HELPER(X) 269 | 270 | /* Identify known platforms by name. */ 271 | #if defined(__linux) || defined(__linux__) || defined(linux) 272 | # define PLATFORM_ID "Linux" 273 | 274 | #elif defined(__CYGWIN__) 275 | # define PLATFORM_ID "Cygwin" 276 | 277 | #elif defined(__MINGW32__) 278 | # define PLATFORM_ID "MinGW" 279 | 280 | #elif defined(__APPLE__) 281 | # define PLATFORM_ID "Darwin" 282 | 283 | #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) 284 | # define PLATFORM_ID "Windows" 285 | 286 | #elif defined(__FreeBSD__) || defined(__FreeBSD) 287 | # define PLATFORM_ID "FreeBSD" 288 | 289 | #elif defined(__NetBSD__) || defined(__NetBSD) 290 | # define PLATFORM_ID "NetBSD" 291 | 292 | #elif defined(__OpenBSD__) || defined(__OPENBSD) 293 | # define PLATFORM_ID "OpenBSD" 294 | 295 | #elif defined(__sun) || defined(sun) 296 | # define PLATFORM_ID "SunOS" 297 | 298 | #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) 299 | # define PLATFORM_ID "AIX" 300 | 301 | #elif defined(__sgi) || defined(__sgi__) || defined(_SGI) 302 | # define PLATFORM_ID "IRIX" 303 | 304 | #elif defined(__hpux) || defined(__hpux__) 305 | # define PLATFORM_ID "HP-UX" 306 | 307 | #elif defined(__HAIKU__) 308 | # define PLATFORM_ID "Haiku" 309 | 310 | #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) 311 | # define PLATFORM_ID "BeOS" 312 | 313 | #elif defined(__QNX__) || defined(__QNXNTO__) 314 | # define PLATFORM_ID "QNX" 315 | 316 | #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) 317 | # define PLATFORM_ID "Tru64" 318 | 319 | #elif defined(__riscos) || defined(__riscos__) 320 | # define PLATFORM_ID "RISCos" 321 | 322 | #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) 323 | # define PLATFORM_ID "SINIX" 324 | 325 | #elif defined(__UNIX_SV__) 326 | # define PLATFORM_ID "UNIX_SV" 327 | 328 | #elif defined(__bsdos__) 329 | # define PLATFORM_ID "BSDOS" 330 | 331 | #elif defined(_MPRAS) || defined(MPRAS) 332 | # define PLATFORM_ID "MP-RAS" 333 | 334 | #elif defined(__osf) || defined(__osf__) 335 | # define PLATFORM_ID "OSF1" 336 | 337 | #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) 338 | # define PLATFORM_ID "SCO_SV" 339 | 340 | #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) 341 | # define PLATFORM_ID "ULTRIX" 342 | 343 | #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) 344 | # define PLATFORM_ID "Xenix" 345 | 346 | #elif defined(__WATCOMC__) 347 | # if defined(__LINUX__) 348 | # define PLATFORM_ID "Linux" 349 | 350 | # elif defined(__DOS__) 351 | # define PLATFORM_ID "DOS" 352 | 353 | # elif defined(__OS2__) 354 | # define PLATFORM_ID "OS2" 355 | 356 | # elif defined(__WINDOWS__) 357 | # define PLATFORM_ID "Windows3x" 358 | 359 | # else /* unknown platform */ 360 | # define PLATFORM_ID "" 361 | # endif 362 | 363 | #else /* unknown platform */ 364 | # define PLATFORM_ID "" 365 | 366 | #endif 367 | 368 | /* For windows compilers MSVC and Intel we can determine 369 | the architecture of the compiler being used. This is because 370 | the compilers do not have flags that can change the architecture, 371 | but rather depend on which compiler is being used 372 | */ 373 | #if defined(_WIN32) && defined(_MSC_VER) 374 | # if defined(_M_IA64) 375 | # define ARCHITECTURE_ID "IA64" 376 | 377 | # elif defined(_M_X64) || defined(_M_AMD64) 378 | # define ARCHITECTURE_ID "x64" 379 | 380 | # elif defined(_M_IX86) 381 | # define ARCHITECTURE_ID "X86" 382 | 383 | # elif defined(_M_ARM) 384 | # if _M_ARM == 4 385 | # define ARCHITECTURE_ID "ARMV4I" 386 | # elif _M_ARM == 5 387 | # define ARCHITECTURE_ID "ARMV5I" 388 | # else 389 | # define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) 390 | # endif 391 | 392 | # elif defined(_M_MIPS) 393 | # define ARCHITECTURE_ID "MIPS" 394 | 395 | # elif defined(_M_SH) 396 | # define ARCHITECTURE_ID "SHx" 397 | 398 | # else /* unknown architecture */ 399 | # define ARCHITECTURE_ID "" 400 | # endif 401 | 402 | #elif defined(__WATCOMC__) 403 | # if defined(_M_I86) 404 | # define ARCHITECTURE_ID "I86" 405 | 406 | # elif defined(_M_IX86) 407 | # define ARCHITECTURE_ID "X86" 408 | 409 | # else /* unknown architecture */ 410 | # define ARCHITECTURE_ID "" 411 | # endif 412 | 413 | #else 414 | # define ARCHITECTURE_ID "" 415 | #endif 416 | 417 | /* Convert integer to decimal digit literals. */ 418 | #define DEC(n) \ 419 | ('0' + (((n) / 10000000)%10)), \ 420 | ('0' + (((n) / 1000000)%10)), \ 421 | ('0' + (((n) / 100000)%10)), \ 422 | ('0' + (((n) / 10000)%10)), \ 423 | ('0' + (((n) / 1000)%10)), \ 424 | ('0' + (((n) / 100)%10)), \ 425 | ('0' + (((n) / 10)%10)), \ 426 | ('0' + ((n) % 10)) 427 | 428 | /* Convert integer to hex digit literals. */ 429 | #define HEX(n) \ 430 | ('0' + ((n)>>28 & 0xF)), \ 431 | ('0' + ((n)>>24 & 0xF)), \ 432 | ('0' + ((n)>>20 & 0xF)), \ 433 | ('0' + ((n)>>16 & 0xF)), \ 434 | ('0' + ((n)>>12 & 0xF)), \ 435 | ('0' + ((n)>>8 & 0xF)), \ 436 | ('0' + ((n)>>4 & 0xF)), \ 437 | ('0' + ((n) & 0xF)) 438 | 439 | /* Construct a string literal encoding the version number components. */ 440 | #ifdef COMPILER_VERSION_MAJOR 441 | char const info_version[] = { 442 | 'I', 'N', 'F', 'O', ':', 443 | 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', 444 | COMPILER_VERSION_MAJOR, 445 | # ifdef COMPILER_VERSION_MINOR 446 | '.', COMPILER_VERSION_MINOR, 447 | # ifdef COMPILER_VERSION_PATCH 448 | '.', COMPILER_VERSION_PATCH, 449 | # ifdef COMPILER_VERSION_TWEAK 450 | '.', COMPILER_VERSION_TWEAK, 451 | # endif 452 | # endif 453 | # endif 454 | ']','\0'}; 455 | #endif 456 | 457 | /* Construct a string literal encoding the version number components. */ 458 | #ifdef SIMULATE_VERSION_MAJOR 459 | char const info_simulate_version[] = { 460 | 'I', 'N', 'F', 'O', ':', 461 | 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', 462 | SIMULATE_VERSION_MAJOR, 463 | # ifdef SIMULATE_VERSION_MINOR 464 | '.', SIMULATE_VERSION_MINOR, 465 | # ifdef SIMULATE_VERSION_PATCH 466 | '.', SIMULATE_VERSION_PATCH, 467 | # ifdef SIMULATE_VERSION_TWEAK 468 | '.', SIMULATE_VERSION_TWEAK, 469 | # endif 470 | # endif 471 | # endif 472 | ']','\0'}; 473 | #endif 474 | 475 | /* Construct the string literal in pieces to prevent the source from 476 | getting matched. Store it in a pointer rather than an array 477 | because some compilers will just produce instructions to fill the 478 | array rather than assigning a pointer to a static array. */ 479 | char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; 480 | char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; 481 | 482 | 483 | 484 | 485 | /*--------------------------------------------------------------------------*/ 486 | 487 | #ifdef ID_VOID_MAIN 488 | void main() {} 489 | #else 490 | int main(int argc, char* argv[]) 491 | { 492 | int require = 0; 493 | require += info_compiler[argc]; 494 | require += info_platform[argc]; 495 | require += info_arch[argc]; 496 | #ifdef COMPILER_VERSION_MAJOR 497 | require += info_version[argc]; 498 | #endif 499 | #ifdef SIMULATE_ID 500 | require += info_simulate[argc]; 501 | #endif 502 | #ifdef SIMULATE_VERSION_MAJOR 503 | require += info_simulate_version[argc]; 504 | #endif 505 | (void)argv; 506 | return require; 507 | } 508 | #endif 509 | -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoonHaKim/node-link/fbf823dcf1fbebcf7903dee289e9a7e3d334498b/build/CMakeFiles/3.3.1/CompilerIdC/a.out -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- 1 | /* This source file must have a .cpp extension so that all C++ compilers 2 | recognize the extension without flags. Borland does not know .cxx for 3 | example. */ 4 | #ifndef __cplusplus 5 | # error "A C compiler has been selected for C++." 6 | #endif 7 | 8 | 9 | /* Version number components: V=Version, R=Revision, P=Patch 10 | Version date components: YYYY=Year, MM=Month, DD=Day */ 11 | 12 | #if defined(__COMO__) 13 | # define COMPILER_ID "Comeau" 14 | /* __COMO_VERSION__ = VRR */ 15 | # define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) 16 | # define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) 17 | 18 | #elif defined(__INTEL_COMPILER) || defined(__ICC) 19 | # define COMPILER_ID "Intel" 20 | # if defined(_MSC_VER) 21 | # define SIMULATE_ID "MSVC" 22 | # endif 23 | /* __INTEL_COMPILER = VRP */ 24 | # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) 25 | # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) 26 | # if defined(__INTEL_COMPILER_UPDATE) 27 | # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) 28 | # else 29 | # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) 30 | # endif 31 | # if defined(__INTEL_COMPILER_BUILD_DATE) 32 | /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ 33 | # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) 34 | # endif 35 | # if defined(_MSC_VER) 36 | /* _MSC_VER = VVRR */ 37 | # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) 38 | # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) 39 | # endif 40 | 41 | #elif defined(__PATHCC__) 42 | # define COMPILER_ID "PathScale" 43 | # define COMPILER_VERSION_MAJOR DEC(__PATHCC__) 44 | # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) 45 | # if defined(__PATHCC_PATCHLEVEL__) 46 | # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) 47 | # endif 48 | 49 | #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) 50 | # define COMPILER_ID "Embarcadero" 51 | # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) 52 | # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) 53 | # define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) 54 | 55 | #elif defined(__BORLANDC__) 56 | # define COMPILER_ID "Borland" 57 | /* __BORLANDC__ = 0xVRR */ 58 | # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) 59 | # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) 60 | 61 | #elif defined(__WATCOMC__) && __WATCOMC__ < 1200 62 | # define COMPILER_ID "Watcom" 63 | /* __WATCOMC__ = VVRR */ 64 | # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) 65 | # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) 66 | # if (__WATCOMC__ % 10) > 0 67 | # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) 68 | # endif 69 | 70 | #elif defined(__WATCOMC__) 71 | # define COMPILER_ID "OpenWatcom" 72 | /* __WATCOMC__ = VVRP + 1100 */ 73 | # define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) 74 | # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) 75 | # if (__WATCOMC__ % 10) > 0 76 | # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) 77 | # endif 78 | 79 | #elif defined(__SUNPRO_CC) 80 | # define COMPILER_ID "SunPro" 81 | # if __SUNPRO_CC >= 0x5100 82 | /* __SUNPRO_CC = 0xVRRP */ 83 | # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) 84 | # define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) 85 | # define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) 86 | # else 87 | /* __SUNPRO_CC = 0xVRP */ 88 | # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) 89 | # define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) 90 | # define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) 91 | # endif 92 | 93 | #elif defined(__HP_aCC) 94 | # define COMPILER_ID "HP" 95 | /* __HP_aCC = VVRRPP */ 96 | # define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) 97 | # define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) 98 | # define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) 99 | 100 | #elif defined(__DECCXX) 101 | # define COMPILER_ID "Compaq" 102 | /* __DECCXX_VER = VVRRTPPPP */ 103 | # define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) 104 | # define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) 105 | # define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) 106 | 107 | #elif defined(__IBMCPP__) && defined(__COMPILER_VER__) 108 | # define COMPILER_ID "zOS" 109 | /* __IBMCPP__ = VRP */ 110 | # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) 111 | # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) 112 | # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) 113 | 114 | #elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 115 | # define COMPILER_ID "XL" 116 | /* __IBMCPP__ = VRP */ 117 | # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) 118 | # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) 119 | # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) 120 | 121 | #elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 122 | # define COMPILER_ID "VisualAge" 123 | /* __IBMCPP__ = VRP */ 124 | # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) 125 | # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) 126 | # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) 127 | 128 | #elif defined(__PGI) 129 | # define COMPILER_ID "PGI" 130 | # define COMPILER_VERSION_MAJOR DEC(__PGIC__) 131 | # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) 132 | # if defined(__PGIC_PATCHLEVEL__) 133 | # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) 134 | # endif 135 | 136 | #elif defined(_CRAYC) 137 | # define COMPILER_ID "Cray" 138 | # define COMPILER_VERSION_MAJOR DEC(_RELEASE) 139 | # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) 140 | 141 | #elif defined(__TI_COMPILER_VERSION__) 142 | # define COMPILER_ID "TI" 143 | /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ 144 | # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) 145 | # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) 146 | # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) 147 | 148 | #elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) 149 | # define COMPILER_ID "Fujitsu" 150 | 151 | #elif defined(__SCO_VERSION__) 152 | # define COMPILER_ID "SCO" 153 | 154 | #elif defined(__clang__) && defined(__apple_build_version__) 155 | # define COMPILER_ID "AppleClang" 156 | # if defined(_MSC_VER) 157 | # define SIMULATE_ID "MSVC" 158 | # endif 159 | # define COMPILER_VERSION_MAJOR DEC(__clang_major__) 160 | # define COMPILER_VERSION_MINOR DEC(__clang_minor__) 161 | # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) 162 | # if defined(_MSC_VER) 163 | /* _MSC_VER = VVRR */ 164 | # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) 165 | # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) 166 | # endif 167 | # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) 168 | 169 | #elif defined(__clang__) 170 | # define COMPILER_ID "Clang" 171 | # if defined(_MSC_VER) 172 | # define SIMULATE_ID "MSVC" 173 | # endif 174 | # define COMPILER_VERSION_MAJOR DEC(__clang_major__) 175 | # define COMPILER_VERSION_MINOR DEC(__clang_minor__) 176 | # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) 177 | # if defined(_MSC_VER) 178 | /* _MSC_VER = VVRR */ 179 | # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) 180 | # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) 181 | # endif 182 | 183 | #elif defined(__GNUC__) 184 | # define COMPILER_ID "GNU" 185 | # define COMPILER_VERSION_MAJOR DEC(__GNUC__) 186 | # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) 187 | # if defined(__GNUC_PATCHLEVEL__) 188 | # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) 189 | # endif 190 | 191 | #elif defined(_MSC_VER) 192 | # define COMPILER_ID "MSVC" 193 | /* _MSC_VER = VVRR */ 194 | # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) 195 | # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) 196 | # if defined(_MSC_FULL_VER) 197 | # if _MSC_VER >= 1400 198 | /* _MSC_FULL_VER = VVRRPPPPP */ 199 | # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) 200 | # else 201 | /* _MSC_FULL_VER = VVRRPPPP */ 202 | # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) 203 | # endif 204 | # endif 205 | # if defined(_MSC_BUILD) 206 | # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) 207 | # endif 208 | 209 | #elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) 210 | # define COMPILER_ID "ADSP" 211 | #if defined(__VISUALDSPVERSION__) 212 | /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ 213 | # define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) 214 | # define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) 215 | # define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) 216 | #endif 217 | 218 | #elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC) 219 | # define COMPILER_ID "IAR" 220 | 221 | #elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) 222 | # define COMPILER_ID "MIPSpro" 223 | # if defined(_SGI_COMPILER_VERSION) 224 | /* _SGI_COMPILER_VERSION = VRP */ 225 | # define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) 226 | # define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) 227 | # define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) 228 | # else 229 | /* _COMPILER_VERSION = VRP */ 230 | # define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) 231 | # define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) 232 | # define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) 233 | # endif 234 | 235 | 236 | /* These compilers are either not known or too old to define an 237 | identification macro. Try to identify the platform and guess that 238 | it is the native compiler. */ 239 | #elif defined(__sgi) 240 | # define COMPILER_ID "MIPSpro" 241 | 242 | #elif defined(__hpux) || defined(__hpua) 243 | # define COMPILER_ID "HP" 244 | 245 | #else /* unknown compiler */ 246 | # define COMPILER_ID "" 247 | #endif 248 | 249 | /* Construct the string literal in pieces to prevent the source from 250 | getting matched. Store it in a pointer rather than an array 251 | because some compilers will just produce instructions to fill the 252 | array rather than assigning a pointer to a static array. */ 253 | char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; 254 | #ifdef SIMULATE_ID 255 | char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; 256 | #endif 257 | 258 | #ifdef __QNXNTO__ 259 | char const* qnxnto = "INFO" ":" "qnxnto[]"; 260 | #endif 261 | 262 | #define STRINGIFY_HELPER(X) #X 263 | #define STRINGIFY(X) STRINGIFY_HELPER(X) 264 | 265 | /* Identify known platforms by name. */ 266 | #if defined(__linux) || defined(__linux__) || defined(linux) 267 | # define PLATFORM_ID "Linux" 268 | 269 | #elif defined(__CYGWIN__) 270 | # define PLATFORM_ID "Cygwin" 271 | 272 | #elif defined(__MINGW32__) 273 | # define PLATFORM_ID "MinGW" 274 | 275 | #elif defined(__APPLE__) 276 | # define PLATFORM_ID "Darwin" 277 | 278 | #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) 279 | # define PLATFORM_ID "Windows" 280 | 281 | #elif defined(__FreeBSD__) || defined(__FreeBSD) 282 | # define PLATFORM_ID "FreeBSD" 283 | 284 | #elif defined(__NetBSD__) || defined(__NetBSD) 285 | # define PLATFORM_ID "NetBSD" 286 | 287 | #elif defined(__OpenBSD__) || defined(__OPENBSD) 288 | # define PLATFORM_ID "OpenBSD" 289 | 290 | #elif defined(__sun) || defined(sun) 291 | # define PLATFORM_ID "SunOS" 292 | 293 | #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) 294 | # define PLATFORM_ID "AIX" 295 | 296 | #elif defined(__sgi) || defined(__sgi__) || defined(_SGI) 297 | # define PLATFORM_ID "IRIX" 298 | 299 | #elif defined(__hpux) || defined(__hpux__) 300 | # define PLATFORM_ID "HP-UX" 301 | 302 | #elif defined(__HAIKU__) 303 | # define PLATFORM_ID "Haiku" 304 | 305 | #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) 306 | # define PLATFORM_ID "BeOS" 307 | 308 | #elif defined(__QNX__) || defined(__QNXNTO__) 309 | # define PLATFORM_ID "QNX" 310 | 311 | #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) 312 | # define PLATFORM_ID "Tru64" 313 | 314 | #elif defined(__riscos) || defined(__riscos__) 315 | # define PLATFORM_ID "RISCos" 316 | 317 | #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) 318 | # define PLATFORM_ID "SINIX" 319 | 320 | #elif defined(__UNIX_SV__) 321 | # define PLATFORM_ID "UNIX_SV" 322 | 323 | #elif defined(__bsdos__) 324 | # define PLATFORM_ID "BSDOS" 325 | 326 | #elif defined(_MPRAS) || defined(MPRAS) 327 | # define PLATFORM_ID "MP-RAS" 328 | 329 | #elif defined(__osf) || defined(__osf__) 330 | # define PLATFORM_ID "OSF1" 331 | 332 | #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) 333 | # define PLATFORM_ID "SCO_SV" 334 | 335 | #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) 336 | # define PLATFORM_ID "ULTRIX" 337 | 338 | #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) 339 | # define PLATFORM_ID "Xenix" 340 | 341 | #elif defined(__WATCOMC__) 342 | # if defined(__LINUX__) 343 | # define PLATFORM_ID "Linux" 344 | 345 | # elif defined(__DOS__) 346 | # define PLATFORM_ID "DOS" 347 | 348 | # elif defined(__OS2__) 349 | # define PLATFORM_ID "OS2" 350 | 351 | # elif defined(__WINDOWS__) 352 | # define PLATFORM_ID "Windows3x" 353 | 354 | # else /* unknown platform */ 355 | # define PLATFORM_ID "" 356 | # endif 357 | 358 | #else /* unknown platform */ 359 | # define PLATFORM_ID "" 360 | 361 | #endif 362 | 363 | /* For windows compilers MSVC and Intel we can determine 364 | the architecture of the compiler being used. This is because 365 | the compilers do not have flags that can change the architecture, 366 | but rather depend on which compiler is being used 367 | */ 368 | #if defined(_WIN32) && defined(_MSC_VER) 369 | # if defined(_M_IA64) 370 | # define ARCHITECTURE_ID "IA64" 371 | 372 | # elif defined(_M_X64) || defined(_M_AMD64) 373 | # define ARCHITECTURE_ID "x64" 374 | 375 | # elif defined(_M_IX86) 376 | # define ARCHITECTURE_ID "X86" 377 | 378 | # elif defined(_M_ARM) 379 | # if _M_ARM == 4 380 | # define ARCHITECTURE_ID "ARMV4I" 381 | # elif _M_ARM == 5 382 | # define ARCHITECTURE_ID "ARMV5I" 383 | # else 384 | # define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) 385 | # endif 386 | 387 | # elif defined(_M_MIPS) 388 | # define ARCHITECTURE_ID "MIPS" 389 | 390 | # elif defined(_M_SH) 391 | # define ARCHITECTURE_ID "SHx" 392 | 393 | # else /* unknown architecture */ 394 | # define ARCHITECTURE_ID "" 395 | # endif 396 | 397 | #elif defined(__WATCOMC__) 398 | # if defined(_M_I86) 399 | # define ARCHITECTURE_ID "I86" 400 | 401 | # elif defined(_M_IX86) 402 | # define ARCHITECTURE_ID "X86" 403 | 404 | # else /* unknown architecture */ 405 | # define ARCHITECTURE_ID "" 406 | # endif 407 | 408 | #else 409 | # define ARCHITECTURE_ID "" 410 | #endif 411 | 412 | /* Convert integer to decimal digit literals. */ 413 | #define DEC(n) \ 414 | ('0' + (((n) / 10000000)%10)), \ 415 | ('0' + (((n) / 1000000)%10)), \ 416 | ('0' + (((n) / 100000)%10)), \ 417 | ('0' + (((n) / 10000)%10)), \ 418 | ('0' + (((n) / 1000)%10)), \ 419 | ('0' + (((n) / 100)%10)), \ 420 | ('0' + (((n) / 10)%10)), \ 421 | ('0' + ((n) % 10)) 422 | 423 | /* Convert integer to hex digit literals. */ 424 | #define HEX(n) \ 425 | ('0' + ((n)>>28 & 0xF)), \ 426 | ('0' + ((n)>>24 & 0xF)), \ 427 | ('0' + ((n)>>20 & 0xF)), \ 428 | ('0' + ((n)>>16 & 0xF)), \ 429 | ('0' + ((n)>>12 & 0xF)), \ 430 | ('0' + ((n)>>8 & 0xF)), \ 431 | ('0' + ((n)>>4 & 0xF)), \ 432 | ('0' + ((n) & 0xF)) 433 | 434 | /* Construct a string literal encoding the version number components. */ 435 | #ifdef COMPILER_VERSION_MAJOR 436 | char const info_version[] = { 437 | 'I', 'N', 'F', 'O', ':', 438 | 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', 439 | COMPILER_VERSION_MAJOR, 440 | # ifdef COMPILER_VERSION_MINOR 441 | '.', COMPILER_VERSION_MINOR, 442 | # ifdef COMPILER_VERSION_PATCH 443 | '.', COMPILER_VERSION_PATCH, 444 | # ifdef COMPILER_VERSION_TWEAK 445 | '.', COMPILER_VERSION_TWEAK, 446 | # endif 447 | # endif 448 | # endif 449 | ']','\0'}; 450 | #endif 451 | 452 | /* Construct a string literal encoding the version number components. */ 453 | #ifdef SIMULATE_VERSION_MAJOR 454 | char const info_simulate_version[] = { 455 | 'I', 'N', 'F', 'O', ':', 456 | 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', 457 | SIMULATE_VERSION_MAJOR, 458 | # ifdef SIMULATE_VERSION_MINOR 459 | '.', SIMULATE_VERSION_MINOR, 460 | # ifdef SIMULATE_VERSION_PATCH 461 | '.', SIMULATE_VERSION_PATCH, 462 | # ifdef SIMULATE_VERSION_TWEAK 463 | '.', SIMULATE_VERSION_TWEAK, 464 | # endif 465 | # endif 466 | # endif 467 | ']','\0'}; 468 | #endif 469 | 470 | /* Construct the string literal in pieces to prevent the source from 471 | getting matched. Store it in a pointer rather than an array 472 | because some compilers will just produce instructions to fill the 473 | array rather than assigning a pointer to a static array. */ 474 | char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; 475 | char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; 476 | 477 | 478 | 479 | 480 | /*--------------------------------------------------------------------------*/ 481 | 482 | int main(int argc, char* argv[]) 483 | { 484 | int require = 0; 485 | require += info_compiler[argc]; 486 | require += info_platform[argc]; 487 | #ifdef COMPILER_VERSION_MAJOR 488 | require += info_version[argc]; 489 | #endif 490 | #ifdef SIMULATE_ID 491 | require += info_simulate[argc]; 492 | #endif 493 | #ifdef SIMULATE_VERSION_MAJOR 494 | require += info_simulate_version[argc]; 495 | #endif 496 | (void)argv; 497 | return require; 498 | } 499 | -------------------------------------------------------------------------------- /build/CMakeFiles/3.3.1/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoonHaKim/node-link/fbf823dcf1fbebcf7903dee289e9a7e3d334498b/build/CMakeFiles/3.3.1/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /build/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | # Relative path conversion top directories. 5 | set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link") 6 | set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build") 7 | 8 | # Force unix paths in dependencies. 9 | set(CMAKE_FORCE_UNIX_PATHS 1) 10 | 11 | 12 | # The C and CXX include file regular expressions for this directory. 13 | set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") 14 | set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") 15 | set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) 16 | set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) 17 | -------------------------------------------------------------------------------- /build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- 1 | The system is: Darwin - 15.6.0 - x86_64 2 | Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. 3 | Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc 4 | Build flags: 5 | Id flags: 6 | 7 | The output was: 8 | 0 9 | 10 | 11 | Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" 12 | 13 | The C compiler identification is AppleClang, found in "/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/3.3.1/CompilerIdC/a.out" 14 | 15 | Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. 16 | Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ 17 | Build flags: -std=c++11;-D_DARWIN_USE_64_BIT_INODE=1;-D_LARGEFILE_SOURCE;-D_FILE_OFFSET_BITS=64;-DBUILDING_NODE_EXTENSION;-w 18 | Id flags: 19 | 20 | The output was: 21 | 0 22 | 23 | 24 | Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" 25 | 26 | The CXX compiler identification is AppleClang, found in "/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/3.3.1/CompilerIdCXX/a.out" 27 | 28 | Determining if the C compiler works passed with the following output: 29 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 30 | 31 | Run Build Command:"/usr/bin/make" "cmTC_13270/fast" 32 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_13270.dir/build.make CMakeFiles/cmTC_13270.dir/build 33 | Building C object CMakeFiles/cmTC_13270.dir/testCCompiler.c.o 34 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -o CMakeFiles/cmTC_13270.dir/testCCompiler.c.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp/testCCompiler.c 35 | Linking C executable cmTC_13270 36 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_13270.dir/link.txt --verbose=1 37 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_13270.dir/testCCompiler.c.o -o cmTC_13270 38 | 39 | 40 | Detecting C compiler ABI info compiled with the following output: 41 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 42 | 43 | Run Build Command:"/usr/bin/make" "cmTC_e53cd/fast" 44 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e53cd.dir/build.make CMakeFiles/cmTC_e53cd.dir/build 45 | Building C object CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o 46 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -o CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o -c /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCCompilerABI.c 47 | Linking C executable cmTC_e53cd 48 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e53cd.dir/link.txt --verbose=1 49 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o -o cmTC_e53cd 50 | Apple LLVM version 7.3.0 (clang-703.0.29) 51 | Target: x86_64-apple-darwin15.6.0 52 | Thread model: posix 53 | InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin 54 | "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_e53cd -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a 55 | @(#)PROGRAM:ld PROJECT:ld64-264.3.101 56 | configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS) 57 | Library search paths: 58 | /usr/lib 59 | /usr/local/lib 60 | Framework search paths: 61 | /Library/Frameworks/ 62 | /System/Library/Frameworks/ 63 | 64 | 65 | Parsed C implicit link information from above output: 66 | link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] 67 | ignore line: [Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp] 68 | ignore line: [] 69 | ignore line: [Run Build Command:"/usr/bin/make" "cmTC_e53cd/fast"] 70 | ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e53cd.dir/build.make CMakeFiles/cmTC_e53cd.dir/build] 71 | ignore line: [Building C object CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o] 72 | ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -o CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o -c /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCCompilerABI.c] 73 | ignore line: [Linking C executable cmTC_e53cd] 74 | ignore line: [/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e53cd.dir/link.txt --verbose=1] 75 | ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o -o cmTC_e53cd ] 76 | ignore line: [Apple LLVM version 7.3.0 (clang-703.0.29)] 77 | ignore line: [Target: x86_64-apple-darwin15.6.0] 78 | ignore line: [Thread model: posix] 79 | ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin] 80 | link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_e53cd -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 81 | arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore 82 | arg [-demangle] ==> ignore 83 | arg [-dynamic] ==> ignore 84 | arg [-arch] ==> ignore 85 | arg [x86_64] ==> ignore 86 | arg [-macosx_version_min] ==> ignore 87 | arg [10.11.0] ==> ignore 88 | arg [-o] ==> ignore 89 | arg [cmTC_e53cd] ==> ignore 90 | arg [-search_paths_first] ==> ignore 91 | arg [-headerpad_max_install_names] ==> ignore 92 | arg [-v] ==> ignore 93 | arg [CMakeFiles/cmTC_e53cd.dir/CMakeCCompilerABI.c.o] ==> ignore 94 | arg [-lSystem] ==> lib [System] 95 | arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 96 | Library search paths: [;/usr/lib;/usr/local/lib] 97 | Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/] 98 | remove lib [System] 99 | collapse lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 100 | collapse library dir [/usr/lib] ==> [/usr/lib] 101 | collapse library dir [/usr/local/lib] ==> [/usr/local/lib] 102 | collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks] 103 | collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks] 104 | implicit libs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 105 | implicit dirs: [/usr/lib;/usr/local/lib] 106 | implicit fwks: [/Library/Frameworks;/System/Library/Frameworks] 107 | 108 | 109 | 110 | 111 | Detecting C [-std=c11] compiler features compiled with the following output: 112 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 113 | 114 | Run Build Command:"/usr/bin/make" "cmTC_5e647/fast" 115 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5e647.dir/build.make CMakeFiles/cmTC_5e647.dir/build 116 | Building C object CMakeFiles/cmTC_5e647.dir/feature_tests.c.o 117 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_5e647.dir/feature_tests.c.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/feature_tests.c 118 | Linking C executable cmTC_5e647 119 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5e647.dir/link.txt --verbose=1 120 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_5e647.dir/feature_tests.c.o -o cmTC_5e647 121 | 122 | 123 | Feature record: C_FEATURE:1c_function_prototypes 124 | Feature record: C_FEATURE:1c_restrict 125 | Feature record: C_FEATURE:1c_static_assert 126 | Feature record: C_FEATURE:1c_variadic_macros 127 | 128 | 129 | Detecting C [-std=c99] compiler features compiled with the following output: 130 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 131 | 132 | Run Build Command:"/usr/bin/make" "cmTC_47c06/fast" 133 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_47c06.dir/build.make CMakeFiles/cmTC_47c06.dir/build 134 | Building C object CMakeFiles/cmTC_47c06.dir/feature_tests.c.o 135 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_47c06.dir/feature_tests.c.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/feature_tests.c 136 | Linking C executable cmTC_47c06 137 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_47c06.dir/link.txt --verbose=1 138 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_47c06.dir/feature_tests.c.o -o cmTC_47c06 139 | 140 | 141 | Feature record: C_FEATURE:1c_function_prototypes 142 | Feature record: C_FEATURE:1c_restrict 143 | Feature record: C_FEATURE:0c_static_assert 144 | Feature record: C_FEATURE:1c_variadic_macros 145 | 146 | 147 | Detecting C [-std=c90] compiler features compiled with the following output: 148 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 149 | 150 | Run Build Command:"/usr/bin/make" "cmTC_bbdfc/fast" 151 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_bbdfc.dir/build.make CMakeFiles/cmTC_bbdfc.dir/build 152 | Building C object CMakeFiles/cmTC_bbdfc.dir/feature_tests.c.o 153 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_bbdfc.dir/feature_tests.c.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/feature_tests.c 154 | Linking C executable cmTC_bbdfc 155 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bbdfc.dir/link.txt --verbose=1 156 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_bbdfc.dir/feature_tests.c.o -o cmTC_bbdfc 157 | 158 | 159 | Feature record: C_FEATURE:1c_function_prototypes 160 | Feature record: C_FEATURE:0c_restrict 161 | Feature record: C_FEATURE:0c_static_assert 162 | Feature record: C_FEATURE:0c_variadic_macros 163 | Determining if the CXX compiler works passed with the following output: 164 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 165 | 166 | Run Build Command:"/usr/bin/make" "cmTC_41f85/fast" 167 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_41f85.dir/build.make CMakeFiles/cmTC_41f85.dir/build 168 | Building CXX object CMakeFiles/cmTC_41f85.dir/testCXXCompiler.cxx.o 169 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -o CMakeFiles/cmTC_41f85.dir/testCXXCompiler.cxx.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx 170 | Linking CXX executable cmTC_41f85 171 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_41f85.dir/link.txt --verbose=1 172 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_41f85.dir/testCXXCompiler.cxx.o -o cmTC_41f85 173 | 174 | 175 | Detecting CXX compiler ABI info compiled with the following output: 176 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 177 | 178 | Run Build Command:"/usr/bin/make" "cmTC_06dc7/fast" 179 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_06dc7.dir/build.make CMakeFiles/cmTC_06dc7.dir/build 180 | Building CXX object CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o 181 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -o CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o -c /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCXXCompilerABI.cpp 182 | Linking CXX executable cmTC_06dc7 183 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06dc7.dir/link.txt --verbose=1 184 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_06dc7 185 | Apple LLVM version 7.3.0 (clang-703.0.29) 186 | Target: x86_64-apple-darwin15.6.0 187 | Thread model: posix 188 | InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin 189 | "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -w -o cmTC_06dc7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a 190 | @(#)PROGRAM:ld PROJECT:ld64-264.3.101 191 | configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS) 192 | Library search paths: 193 | /usr/lib 194 | /usr/local/lib 195 | Framework search paths: 196 | /Library/Frameworks/ 197 | /System/Library/Frameworks/ 198 | 199 | 200 | Parsed CXX implicit link information from above output: 201 | link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] 202 | ignore line: [Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp] 203 | ignore line: [] 204 | ignore line: [Run Build Command:"/usr/bin/make" "cmTC_06dc7/fast"] 205 | ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_06dc7.dir/build.make CMakeFiles/cmTC_06dc7.dir/build] 206 | ignore line: [Building CXX object CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o] 207 | ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -o CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o -c /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCXXCompilerABI.cpp] 208 | ignore line: [Linking CXX executable cmTC_06dc7] 209 | ignore line: [/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06dc7.dir/link.txt --verbose=1] 210 | ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_06dc7 ] 211 | ignore line: [Apple LLVM version 7.3.0 (clang-703.0.29)] 212 | ignore line: [Target: x86_64-apple-darwin15.6.0] 213 | ignore line: [Thread model: posix] 214 | ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin] 215 | link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -w -o cmTC_06dc7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 216 | arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore 217 | arg [-demangle] ==> ignore 218 | arg [-dynamic] ==> ignore 219 | arg [-arch] ==> ignore 220 | arg [x86_64] ==> ignore 221 | arg [-macosx_version_min] ==> ignore 222 | arg [10.11.0] ==> ignore 223 | arg [-w] ==> ignore 224 | arg [-o] ==> ignore 225 | arg [cmTC_06dc7] ==> ignore 226 | arg [-search_paths_first] ==> ignore 227 | arg [-headerpad_max_install_names] ==> ignore 228 | arg [-v] ==> ignore 229 | arg [CMakeFiles/cmTC_06dc7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore 230 | arg [-lc++] ==> lib [c++] 231 | arg [-lSystem] ==> lib [System] 232 | arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 233 | Library search paths: [;/usr/lib;/usr/local/lib] 234 | Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/] 235 | remove lib [System] 236 | collapse lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 237 | collapse library dir [/usr/lib] ==> [/usr/lib] 238 | collapse library dir [/usr/local/lib] ==> [/usr/local/lib] 239 | collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks] 240 | collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks] 241 | implicit libs: [c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] 242 | implicit dirs: [/usr/lib;/usr/local/lib] 243 | implicit fwks: [/Library/Frameworks;/System/Library/Frameworks] 244 | 245 | 246 | 247 | 248 | Detecting CXX [-std=c++1y] compiler features compiled with the following output: 249 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 250 | 251 | Run Build Command:"/usr/bin/make" "cmTC_3131b/fast" 252 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_3131b.dir/build.make CMakeFiles/cmTC_3131b.dir/build 253 | Building CXX object CMakeFiles/cmTC_3131b.dir/feature_tests.cxx.o 254 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -std=c++1y -o CMakeFiles/cmTC_3131b.dir/feature_tests.cxx.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/feature_tests.cxx 255 | Linking CXX executable cmTC_3131b 256 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3131b.dir/link.txt --verbose=1 257 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3131b.dir/feature_tests.cxx.o -o cmTC_3131b 258 | 259 | 260 | Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers 261 | Feature record: CXX_FEATURE:1cxx_alias_templates 262 | Feature record: CXX_FEATURE:1cxx_alignas 263 | Feature record: CXX_FEATURE:1cxx_alignof 264 | Feature record: CXX_FEATURE:1cxx_attributes 265 | Feature record: CXX_FEATURE:1cxx_attribute_deprecated 266 | Feature record: CXX_FEATURE:1cxx_auto_type 267 | Feature record: CXX_FEATURE:1cxx_binary_literals 268 | Feature record: CXX_FEATURE:1cxx_constexpr 269 | Feature record: CXX_FEATURE:1cxx_contextual_conversions 270 | Feature record: CXX_FEATURE:1cxx_decltype 271 | Feature record: CXX_FEATURE:1cxx_decltype_auto 272 | Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types 273 | Feature record: CXX_FEATURE:1cxx_default_function_template_args 274 | Feature record: CXX_FEATURE:1cxx_defaulted_functions 275 | Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers 276 | Feature record: CXX_FEATURE:1cxx_delegating_constructors 277 | Feature record: CXX_FEATURE:1cxx_deleted_functions 278 | Feature record: CXX_FEATURE:1cxx_digit_separators 279 | Feature record: CXX_FEATURE:1cxx_enum_forward_declarations 280 | Feature record: CXX_FEATURE:1cxx_explicit_conversions 281 | Feature record: CXX_FEATURE:1cxx_extended_friend_declarations 282 | Feature record: CXX_FEATURE:1cxx_extern_templates 283 | Feature record: CXX_FEATURE:1cxx_final 284 | Feature record: CXX_FEATURE:1cxx_func_identifier 285 | Feature record: CXX_FEATURE:1cxx_generalized_initializers 286 | Feature record: CXX_FEATURE:1cxx_generic_lambdas 287 | Feature record: CXX_FEATURE:1cxx_inheriting_constructors 288 | Feature record: CXX_FEATURE:1cxx_inline_namespaces 289 | Feature record: CXX_FEATURE:1cxx_lambdas 290 | Feature record: CXX_FEATURE:1cxx_lambda_init_captures 291 | Feature record: CXX_FEATURE:1cxx_local_type_template_args 292 | Feature record: CXX_FEATURE:1cxx_long_long_type 293 | Feature record: CXX_FEATURE:1cxx_noexcept 294 | Feature record: CXX_FEATURE:1cxx_nonstatic_member_init 295 | Feature record: CXX_FEATURE:1cxx_nullptr 296 | Feature record: CXX_FEATURE:1cxx_override 297 | Feature record: CXX_FEATURE:1cxx_range_for 298 | Feature record: CXX_FEATURE:1cxx_raw_string_literals 299 | Feature record: CXX_FEATURE:1cxx_reference_qualified_functions 300 | Feature record: CXX_FEATURE:1cxx_relaxed_constexpr 301 | Feature record: CXX_FEATURE:1cxx_return_type_deduction 302 | Feature record: CXX_FEATURE:1cxx_right_angle_brackets 303 | Feature record: CXX_FEATURE:1cxx_rvalue_references 304 | Feature record: CXX_FEATURE:1cxx_sizeof_member 305 | Feature record: CXX_FEATURE:1cxx_static_assert 306 | Feature record: CXX_FEATURE:1cxx_strong_enums 307 | Feature record: CXX_FEATURE:1cxx_template_template_parameters 308 | Feature record: CXX_FEATURE:0cxx_thread_local 309 | Feature record: CXX_FEATURE:1cxx_trailing_return_types 310 | Feature record: CXX_FEATURE:1cxx_unicode_literals 311 | Feature record: CXX_FEATURE:1cxx_uniform_initialization 312 | Feature record: CXX_FEATURE:1cxx_unrestricted_unions 313 | Feature record: CXX_FEATURE:1cxx_user_literals 314 | Feature record: CXX_FEATURE:1cxx_variable_templates 315 | Feature record: CXX_FEATURE:1cxx_variadic_macros 316 | Feature record: CXX_FEATURE:1cxx_variadic_templates 317 | 318 | 319 | Detecting CXX [-std=c++11] compiler features compiled with the following output: 320 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 321 | 322 | Run Build Command:"/usr/bin/make" "cmTC_c32d4/fast" 323 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c32d4.dir/build.make CMakeFiles/cmTC_c32d4.dir/build 324 | Building CXX object CMakeFiles/cmTC_c32d4.dir/feature_tests.cxx.o 325 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -std=c++11 -o CMakeFiles/cmTC_c32d4.dir/feature_tests.cxx.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/feature_tests.cxx 326 | Linking CXX executable cmTC_c32d4 327 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c32d4.dir/link.txt --verbose=1 328 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c32d4.dir/feature_tests.cxx.o -o cmTC_c32d4 329 | 330 | 331 | Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers 332 | Feature record: CXX_FEATURE:1cxx_alias_templates 333 | Feature record: CXX_FEATURE:1cxx_alignas 334 | Feature record: CXX_FEATURE:1cxx_alignof 335 | Feature record: CXX_FEATURE:1cxx_attributes 336 | Feature record: CXX_FEATURE:0cxx_attribute_deprecated 337 | Feature record: CXX_FEATURE:1cxx_auto_type 338 | Feature record: CXX_FEATURE:0cxx_binary_literals 339 | Feature record: CXX_FEATURE:1cxx_constexpr 340 | Feature record: CXX_FEATURE:0cxx_contextual_conversions 341 | Feature record: CXX_FEATURE:1cxx_decltype 342 | Feature record: CXX_FEATURE:0cxx_decltype_auto 343 | Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types 344 | Feature record: CXX_FEATURE:1cxx_default_function_template_args 345 | Feature record: CXX_FEATURE:1cxx_defaulted_functions 346 | Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers 347 | Feature record: CXX_FEATURE:1cxx_delegating_constructors 348 | Feature record: CXX_FEATURE:1cxx_deleted_functions 349 | Feature record: CXX_FEATURE:0cxx_digit_separators 350 | Feature record: CXX_FEATURE:1cxx_enum_forward_declarations 351 | Feature record: CXX_FEATURE:1cxx_explicit_conversions 352 | Feature record: CXX_FEATURE:1cxx_extended_friend_declarations 353 | Feature record: CXX_FEATURE:1cxx_extern_templates 354 | Feature record: CXX_FEATURE:1cxx_final 355 | Feature record: CXX_FEATURE:1cxx_func_identifier 356 | Feature record: CXX_FEATURE:1cxx_generalized_initializers 357 | Feature record: CXX_FEATURE:0cxx_generic_lambdas 358 | Feature record: CXX_FEATURE:1cxx_inheriting_constructors 359 | Feature record: CXX_FEATURE:1cxx_inline_namespaces 360 | Feature record: CXX_FEATURE:1cxx_lambdas 361 | Feature record: CXX_FEATURE:0cxx_lambda_init_captures 362 | Feature record: CXX_FEATURE:1cxx_local_type_template_args 363 | Feature record: CXX_FEATURE:1cxx_long_long_type 364 | Feature record: CXX_FEATURE:1cxx_noexcept 365 | Feature record: CXX_FEATURE:1cxx_nonstatic_member_init 366 | Feature record: CXX_FEATURE:1cxx_nullptr 367 | Feature record: CXX_FEATURE:1cxx_override 368 | Feature record: CXX_FEATURE:1cxx_range_for 369 | Feature record: CXX_FEATURE:1cxx_raw_string_literals 370 | Feature record: CXX_FEATURE:1cxx_reference_qualified_functions 371 | Feature record: CXX_FEATURE:0cxx_relaxed_constexpr 372 | Feature record: CXX_FEATURE:0cxx_return_type_deduction 373 | Feature record: CXX_FEATURE:1cxx_right_angle_brackets 374 | Feature record: CXX_FEATURE:1cxx_rvalue_references 375 | Feature record: CXX_FEATURE:1cxx_sizeof_member 376 | Feature record: CXX_FEATURE:1cxx_static_assert 377 | Feature record: CXX_FEATURE:1cxx_strong_enums 378 | Feature record: CXX_FEATURE:1cxx_template_template_parameters 379 | Feature record: CXX_FEATURE:0cxx_thread_local 380 | Feature record: CXX_FEATURE:1cxx_trailing_return_types 381 | Feature record: CXX_FEATURE:1cxx_unicode_literals 382 | Feature record: CXX_FEATURE:1cxx_uniform_initialization 383 | Feature record: CXX_FEATURE:1cxx_unrestricted_unions 384 | Feature record: CXX_FEATURE:1cxx_user_literals 385 | Feature record: CXX_FEATURE:0cxx_variable_templates 386 | Feature record: CXX_FEATURE:1cxx_variadic_macros 387 | Feature record: CXX_FEATURE:1cxx_variadic_templates 388 | 389 | 390 | Detecting CXX [-std=c++98] compiler features compiled with the following output: 391 | Change Dir: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/CMakeTmp 392 | 393 | Run Build Command:"/usr/bin/make" "cmTC_07b68/fast" 394 | /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_07b68.dir/build.make CMakeFiles/cmTC_07b68.dir/build 395 | Building CXX object CMakeFiles/cmTC_07b68.dir/feature_tests.cxx.o 396 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -std=c++98 -o CMakeFiles/cmTC_07b68.dir/feature_tests.cxx.o -c /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/feature_tests.cxx 397 | Linking CXX executable cmTC_07b68 398 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E cmake_link_script CMakeFiles/cmTC_07b68.dir/link.txt --verbose=1 399 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -w -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_07b68.dir/feature_tests.cxx.o -o cmTC_07b68 400 | 401 | 402 | Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers 403 | Feature record: CXX_FEATURE:0cxx_alias_templates 404 | Feature record: CXX_FEATURE:0cxx_alignas 405 | Feature record: CXX_FEATURE:0cxx_alignof 406 | Feature record: CXX_FEATURE:0cxx_attributes 407 | Feature record: CXX_FEATURE:0cxx_attribute_deprecated 408 | Feature record: CXX_FEATURE:0cxx_auto_type 409 | Feature record: CXX_FEATURE:0cxx_binary_literals 410 | Feature record: CXX_FEATURE:0cxx_constexpr 411 | Feature record: CXX_FEATURE:0cxx_contextual_conversions 412 | Feature record: CXX_FEATURE:0cxx_decltype 413 | Feature record: CXX_FEATURE:0cxx_decltype_auto 414 | Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types 415 | Feature record: CXX_FEATURE:0cxx_default_function_template_args 416 | Feature record: CXX_FEATURE:0cxx_defaulted_functions 417 | Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers 418 | Feature record: CXX_FEATURE:0cxx_delegating_constructors 419 | Feature record: CXX_FEATURE:0cxx_deleted_functions 420 | Feature record: CXX_FEATURE:0cxx_digit_separators 421 | Feature record: CXX_FEATURE:0cxx_enum_forward_declarations 422 | Feature record: CXX_FEATURE:0cxx_explicit_conversions 423 | Feature record: CXX_FEATURE:0cxx_extended_friend_declarations 424 | Feature record: CXX_FEATURE:0cxx_extern_templates 425 | Feature record: CXX_FEATURE:0cxx_final 426 | Feature record: CXX_FEATURE:0cxx_func_identifier 427 | Feature record: CXX_FEATURE:0cxx_generalized_initializers 428 | Feature record: CXX_FEATURE:0cxx_generic_lambdas 429 | Feature record: CXX_FEATURE:0cxx_inheriting_constructors 430 | Feature record: CXX_FEATURE:0cxx_inline_namespaces 431 | Feature record: CXX_FEATURE:0cxx_lambdas 432 | Feature record: CXX_FEATURE:0cxx_lambda_init_captures 433 | Feature record: CXX_FEATURE:0cxx_local_type_template_args 434 | Feature record: CXX_FEATURE:0cxx_long_long_type 435 | Feature record: CXX_FEATURE:0cxx_noexcept 436 | Feature record: CXX_FEATURE:0cxx_nonstatic_member_init 437 | Feature record: CXX_FEATURE:0cxx_nullptr 438 | Feature record: CXX_FEATURE:0cxx_override 439 | Feature record: CXX_FEATURE:0cxx_range_for 440 | Feature record: CXX_FEATURE:0cxx_raw_string_literals 441 | Feature record: CXX_FEATURE:0cxx_reference_qualified_functions 442 | Feature record: CXX_FEATURE:0cxx_relaxed_constexpr 443 | Feature record: CXX_FEATURE:0cxx_return_type_deduction 444 | Feature record: CXX_FEATURE:0cxx_right_angle_brackets 445 | Feature record: CXX_FEATURE:0cxx_rvalue_references 446 | Feature record: CXX_FEATURE:0cxx_sizeof_member 447 | Feature record: CXX_FEATURE:0cxx_static_assert 448 | Feature record: CXX_FEATURE:0cxx_strong_enums 449 | Feature record: CXX_FEATURE:1cxx_template_template_parameters 450 | Feature record: CXX_FEATURE:0cxx_thread_local 451 | Feature record: CXX_FEATURE:0cxx_trailing_return_types 452 | Feature record: CXX_FEATURE:0cxx_unicode_literals 453 | Feature record: CXX_FEATURE:0cxx_uniform_initialization 454 | Feature record: CXX_FEATURE:0cxx_unrestricted_unions 455 | Feature record: CXX_FEATURE:0cxx_user_literals 456 | Feature record: CXX_FEATURE:0cxx_variable_templates 457 | Feature record: CXX_FEATURE:0cxx_variadic_macros 458 | Feature record: CXX_FEATURE:0cxx_variadic_templates 459 | -------------------------------------------------------------------------------- /build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | # The generator used is: 5 | set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") 6 | 7 | # The top level Makefile was generated from the following files: 8 | set(CMAKE_MAKEFILE_DEPENDS 9 | "CMakeCache.txt" 10 | "../CMakeLists.txt" 11 | "CMakeFiles/3.3.1/CMakeCCompiler.cmake" 12 | "CMakeFiles/3.3.1/CMakeCXXCompiler.cmake" 13 | "CMakeFiles/3.3.1/CMakeSystem.cmake" 14 | "../link/AbletonLinkConfig.cmake" 15 | "../link/cmake_include/AsioStandaloneConfig.cmake" 16 | "../node_modules/boost-lib/cmake/BoostLib.cmake" 17 | "../node_modules/boost-lib/cmake/BoostLibInstaller.cmake" 18 | "../node_modules/boost-lib/cmake/DownloadBoost.cmake" 19 | "../node_modules/boost-lib/cmake/GetBoostLibB2Args.cmake" 20 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCInformation.cmake" 21 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCXXInformation.cmake" 22 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeCommonLanguageInclude.cmake" 23 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeGenericSystem.cmake" 24 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeSystemSpecificInformation.cmake" 25 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/CMakeSystemSpecificInitialize.cmake" 26 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Compiler/AppleClang-C.cmake" 27 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Compiler/AppleClang-CXX.cmake" 28 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Compiler/Clang.cmake" 29 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Compiler/GNU.cmake" 30 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/ExternalProject.cmake" 31 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin-AppleClang-C.cmake" 32 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin-AppleClang-CXX.cmake" 33 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin-Clang-C.cmake" 34 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin-Clang-CXX.cmake" 35 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin-Clang.cmake" 36 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin-Initialize.cmake" 37 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/Darwin.cmake" 38 | "/Volumes/BNSWORKS/cloudedhazelnut/anaconda3/share/cmake-3.3/Modules/Platform/UnixPaths.cmake" 39 | ) 40 | 41 | # The corresponding makefile is: 42 | set(CMAKE_MAKEFILE_OUTPUTS 43 | "Makefile" 44 | "CMakeFiles/cmake.check_cache" 45 | ) 46 | 47 | # Byproducts of CMake generate step: 48 | set(CMAKE_MAKEFILE_PRODUCTS 49 | "CMakeFiles/CMakeDirectoryInformation.cmake" 50 | ) 51 | 52 | # Dependency information for all targets: 53 | set(CMAKE_DEPEND_INFO_FILES 54 | "CMakeFiles/node-link.dir/DependInfo.cmake" 55 | ) 56 | -------------------------------------------------------------------------------- /build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | # Default target executed when no arguments are given to make. 5 | default_target: all 6 | 7 | .PHONY : default_target 8 | 9 | # The main recursive all target 10 | all: 11 | 12 | .PHONY : all 13 | 14 | # The main recursive preinstall target 15 | preinstall: 16 | 17 | .PHONY : preinstall 18 | 19 | #============================================================================= 20 | # Special targets provided by cmake. 21 | 22 | # Disable implicit rules so canonical targets will work. 23 | .SUFFIXES: 24 | 25 | 26 | # Remove some rules from gmake that .SUFFIXES does not remove. 27 | SUFFIXES = 28 | 29 | .SUFFIXES: .hpux_make_needs_suffix_list 30 | 31 | 32 | # Suppress display of executed commands. 33 | $(VERBOSE).SILENT: 34 | 35 | 36 | # A target that is always out of date. 37 | cmake_force: 38 | 39 | .PHONY : cmake_force 40 | 41 | #============================================================================= 42 | # Set environment variables for the build. 43 | 44 | # The shell in which to execute make rules. 45 | SHELL = /bin/sh 46 | 47 | # The CMake executable. 48 | CMAKE_COMMAND = /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake 49 | 50 | # The command to remove a file. 51 | RM = /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E remove -f 52 | 53 | # Escaping for special characters. 54 | EQUALS = = 55 | 56 | # The top-level source directory on which CMake was run. 57 | CMAKE_SOURCE_DIR = /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link 58 | 59 | # The top-level build directory on which CMake was run. 60 | CMAKE_BINARY_DIR = /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build 61 | 62 | #============================================================================= 63 | # Target rules for target CMakeFiles/node-link.dir 64 | 65 | # All Build rule for target. 66 | CMakeFiles/node-link.dir/all: 67 | $(MAKE) -f CMakeFiles/node-link.dir/build.make CMakeFiles/node-link.dir/depend 68 | $(MAKE) -f CMakeFiles/node-link.dir/build.make CMakeFiles/node-link.dir/build 69 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles --progress-num=1 "Built target node-link" 70 | .PHONY : CMakeFiles/node-link.dir/all 71 | 72 | # Include target in all. 73 | all: CMakeFiles/node-link.dir/all 74 | 75 | .PHONY : all 76 | 77 | # Build rule for subdir invocation for target. 78 | CMakeFiles/node-link.dir/rule: cmake_check_build_system 79 | $(CMAKE_COMMAND) -E cmake_progress_start /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles 1 80 | $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/node-link.dir/all 81 | $(CMAKE_COMMAND) -E cmake_progress_start /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles 0 82 | .PHONY : CMakeFiles/node-link.dir/rule 83 | 84 | # Convenience name for target. 85 | node-link: CMakeFiles/node-link.dir/rule 86 | 87 | .PHONY : node-link 88 | 89 | # clean rule for target. 90 | CMakeFiles/node-link.dir/clean: 91 | $(MAKE) -f CMakeFiles/node-link.dir/build.make CMakeFiles/node-link.dir/clean 92 | .PHONY : CMakeFiles/node-link.dir/clean 93 | 94 | # clean rule for target. 95 | clean: CMakeFiles/node-link.dir/clean 96 | 97 | .PHONY : clean 98 | 99 | #============================================================================= 100 | # Special targets to cleanup operation of make. 101 | 102 | # Special rule to run CMake to check the build system integrity. 103 | # No rule that depends on this can have commands that come from listfiles 104 | # because they might be regenerated. 105 | cmake_check_build_system: 106 | $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 107 | .PHONY : cmake_check_build_system 108 | 109 | -------------------------------------------------------------------------------- /build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/node-link.dir 2 | -------------------------------------------------------------------------------- /build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoonHaKim/node-link/fbf823dcf1fbebcf7903dee289e9a7e3d334498b/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- 1 | 2 | const char features[] = {"" 3 | "C_FEATURE:" 4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 5 | "1" 6 | #else 7 | "0" 8 | #endif 9 | "c_function_prototypes\n" 10 | "C_FEATURE:" 11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 12 | "1" 13 | #else 14 | "0" 15 | #endif 16 | "c_restrict\n" 17 | "C_FEATURE:" 18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L 19 | "1" 20 | #else 21 | "0" 22 | #endif 23 | "c_static_assert\n" 24 | "C_FEATURE:" 25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 26 | "1" 27 | #else 28 | "0" 29 | #endif 30 | "c_variadic_macros\n" 31 | 32 | }; 33 | 34 | int main(int argc, char** argv) { (void)argv; return features[argc]; } 35 | -------------------------------------------------------------------------------- /build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- 1 | 2 | const char features[] = {"" 3 | "CXX_FEATURE:" 4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_aggregate_nsdmi) 5 | "1" 6 | #else 7 | "0" 8 | #endif 9 | "cxx_aggregate_default_initializers\n" 10 | "CXX_FEATURE:" 11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_alias_templates) 12 | "1" 13 | #else 14 | "0" 15 | #endif 16 | "cxx_alias_templates\n" 17 | "CXX_FEATURE:" 18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_alignas) 19 | "1" 20 | #else 21 | "0" 22 | #endif 23 | "cxx_alignas\n" 24 | "CXX_FEATURE:" 25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_alignas) 26 | "1" 27 | #else 28 | "0" 29 | #endif 30 | "cxx_alignof\n" 31 | "CXX_FEATURE:" 32 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_attributes) 33 | "1" 34 | #else 35 | "0" 36 | #endif 37 | "cxx_attributes\n" 38 | "CXX_FEATURE:" 39 | #if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L 40 | "1" 41 | #else 42 | "0" 43 | #endif 44 | "cxx_attribute_deprecated\n" 45 | "CXX_FEATURE:" 46 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_auto_type) 47 | "1" 48 | #else 49 | "0" 50 | #endif 51 | "cxx_auto_type\n" 52 | "CXX_FEATURE:" 53 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_binary_literals) 54 | "1" 55 | #else 56 | "0" 57 | #endif 58 | "cxx_binary_literals\n" 59 | "CXX_FEATURE:" 60 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_constexpr) 61 | "1" 62 | #else 63 | "0" 64 | #endif 65 | "cxx_constexpr\n" 66 | "CXX_FEATURE:" 67 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_contextual_conversions) 68 | "1" 69 | #else 70 | "0" 71 | #endif 72 | "cxx_contextual_conversions\n" 73 | "CXX_FEATURE:" 74 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_decltype) 75 | "1" 76 | #else 77 | "0" 78 | #endif 79 | "cxx_decltype\n" 80 | "CXX_FEATURE:" 81 | #if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L 82 | "1" 83 | #else 84 | "0" 85 | #endif 86 | "cxx_decltype_auto\n" 87 | "CXX_FEATURE:" 88 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_decltype_incomplete_return_types) 89 | "1" 90 | #else 91 | "0" 92 | #endif 93 | "cxx_decltype_incomplete_return_types\n" 94 | "CXX_FEATURE:" 95 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_default_function_template_args) 96 | "1" 97 | #else 98 | "0" 99 | #endif 100 | "cxx_default_function_template_args\n" 101 | "CXX_FEATURE:" 102 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_defaulted_functions) 103 | "1" 104 | #else 105 | "0" 106 | #endif 107 | "cxx_defaulted_functions\n" 108 | "CXX_FEATURE:" 109 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_defaulted_functions) 110 | "1" 111 | #else 112 | "0" 113 | #endif 114 | "cxx_defaulted_move_initializers\n" 115 | "CXX_FEATURE:" 116 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_delegating_constructors) 117 | "1" 118 | #else 119 | "0" 120 | #endif 121 | "cxx_delegating_constructors\n" 122 | "CXX_FEATURE:" 123 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_deleted_functions) 124 | "1" 125 | #else 126 | "0" 127 | #endif 128 | "cxx_deleted_functions\n" 129 | "CXX_FEATURE:" 130 | #if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L 131 | "1" 132 | #else 133 | "0" 134 | #endif 135 | "cxx_digit_separators\n" 136 | "CXX_FEATURE:" 137 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 138 | "1" 139 | #else 140 | "0" 141 | #endif 142 | "cxx_enum_forward_declarations\n" 143 | "CXX_FEATURE:" 144 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_explicit_conversions) 145 | "1" 146 | #else 147 | "0" 148 | #endif 149 | "cxx_explicit_conversions\n" 150 | "CXX_FEATURE:" 151 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 152 | "1" 153 | #else 154 | "0" 155 | #endif 156 | "cxx_extended_friend_declarations\n" 157 | "CXX_FEATURE:" 158 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 159 | "1" 160 | #else 161 | "0" 162 | #endif 163 | "cxx_extern_templates\n" 164 | "CXX_FEATURE:" 165 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_override_control) 166 | "1" 167 | #else 168 | "0" 169 | #endif 170 | "cxx_final\n" 171 | "CXX_FEATURE:" 172 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 173 | "1" 174 | #else 175 | "0" 176 | #endif 177 | "cxx_func_identifier\n" 178 | "CXX_FEATURE:" 179 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_generalized_initializers) 180 | "1" 181 | #else 182 | "0" 183 | #endif 184 | "cxx_generalized_initializers\n" 185 | "CXX_FEATURE:" 186 | #if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L 187 | "1" 188 | #else 189 | "0" 190 | #endif 191 | "cxx_generic_lambdas\n" 192 | "CXX_FEATURE:" 193 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_inheriting_constructors) 194 | "1" 195 | #else 196 | "0" 197 | #endif 198 | "cxx_inheriting_constructors\n" 199 | "CXX_FEATURE:" 200 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 201 | "1" 202 | #else 203 | "0" 204 | #endif 205 | "cxx_inline_namespaces\n" 206 | "CXX_FEATURE:" 207 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_lambdas) 208 | "1" 209 | #else 210 | "0" 211 | #endif 212 | "cxx_lambdas\n" 213 | "CXX_FEATURE:" 214 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_init_captures) 215 | "1" 216 | #else 217 | "0" 218 | #endif 219 | "cxx_lambda_init_captures\n" 220 | "CXX_FEATURE:" 221 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_local_type_template_args) 222 | "1" 223 | #else 224 | "0" 225 | #endif 226 | "cxx_local_type_template_args\n" 227 | "CXX_FEATURE:" 228 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 229 | "1" 230 | #else 231 | "0" 232 | #endif 233 | "cxx_long_long_type\n" 234 | "CXX_FEATURE:" 235 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_noexcept) 236 | "1" 237 | #else 238 | "0" 239 | #endif 240 | "cxx_noexcept\n" 241 | "CXX_FEATURE:" 242 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_nonstatic_member_init) 243 | "1" 244 | #else 245 | "0" 246 | #endif 247 | "cxx_nonstatic_member_init\n" 248 | "CXX_FEATURE:" 249 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_nullptr) 250 | "1" 251 | #else 252 | "0" 253 | #endif 254 | "cxx_nullptr\n" 255 | "CXX_FEATURE:" 256 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_override_control) 257 | "1" 258 | #else 259 | "0" 260 | #endif 261 | "cxx_override\n" 262 | "CXX_FEATURE:" 263 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_range_for) 264 | "1" 265 | #else 266 | "0" 267 | #endif 268 | "cxx_range_for\n" 269 | "CXX_FEATURE:" 270 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_raw_string_literals) 271 | "1" 272 | #else 273 | "0" 274 | #endif 275 | "cxx_raw_string_literals\n" 276 | "CXX_FEATURE:" 277 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_reference_qualified_functions) 278 | "1" 279 | #else 280 | "0" 281 | #endif 282 | "cxx_reference_qualified_functions\n" 283 | "CXX_FEATURE:" 284 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_relaxed_constexpr) 285 | "1" 286 | #else 287 | "0" 288 | #endif 289 | "cxx_relaxed_constexpr\n" 290 | "CXX_FEATURE:" 291 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_return_type_deduction) 292 | "1" 293 | #else 294 | "0" 295 | #endif 296 | "cxx_return_type_deduction\n" 297 | "CXX_FEATURE:" 298 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 299 | "1" 300 | #else 301 | "0" 302 | #endif 303 | "cxx_right_angle_brackets\n" 304 | "CXX_FEATURE:" 305 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_rvalue_references) 306 | "1" 307 | #else 308 | "0" 309 | #endif 310 | "cxx_rvalue_references\n" 311 | "CXX_FEATURE:" 312 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 313 | "1" 314 | #else 315 | "0" 316 | #endif 317 | "cxx_sizeof_member\n" 318 | "CXX_FEATURE:" 319 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_static_assert) 320 | "1" 321 | #else 322 | "0" 323 | #endif 324 | "cxx_static_assert\n" 325 | "CXX_FEATURE:" 326 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_strong_enums) 327 | "1" 328 | #else 329 | "0" 330 | #endif 331 | "cxx_strong_enums\n" 332 | "CXX_FEATURE:" 333 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 199711L 334 | "1" 335 | #else 336 | "0" 337 | #endif 338 | "cxx_template_template_parameters\n" 339 | "CXX_FEATURE:" 340 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_thread_local) 341 | "1" 342 | #else 343 | "0" 344 | #endif 345 | "cxx_thread_local\n" 346 | "CXX_FEATURE:" 347 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_trailing_return) 348 | "1" 349 | #else 350 | "0" 351 | #endif 352 | "cxx_trailing_return_types\n" 353 | "CXX_FEATURE:" 354 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_unicode_literals) 355 | "1" 356 | #else 357 | "0" 358 | #endif 359 | "cxx_unicode_literals\n" 360 | "CXX_FEATURE:" 361 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_generalized_initializers) 362 | "1" 363 | #else 364 | "0" 365 | #endif 366 | "cxx_uniform_initialization\n" 367 | "CXX_FEATURE:" 368 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_unrestricted_unions) 369 | "1" 370 | #else 371 | "0" 372 | #endif 373 | "cxx_unrestricted_unions\n" 374 | "CXX_FEATURE:" 375 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_user_literals) 376 | "1" 377 | #else 378 | "0" 379 | #endif 380 | "cxx_user_literals\n" 381 | "CXX_FEATURE:" 382 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_variable_templates) 383 | "1" 384 | #else 385 | "0" 386 | #endif 387 | "cxx_variable_templates\n" 388 | "CXX_FEATURE:" 389 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L 390 | "1" 391 | #else 392 | "0" 393 | #endif 394 | "cxx_variadic_macros\n" 395 | "CXX_FEATURE:" 396 | #if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_variadic_templates) 397 | "1" 398 | #else 399 | "0" 400 | #endif 401 | "cxx_variadic_templates\n" 402 | 403 | }; 404 | 405 | int main(int argc, char** argv) { (void)argv; return features[argc]; } 406 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/DependInfo.cmake: -------------------------------------------------------------------------------- 1 | # The set of languages for which implicit dependencies are needed: 2 | set(CMAKE_DEPENDS_LANGUAGES 3 | ) 4 | # The set of files for implicit dependencies of each language: 5 | 6 | # Targets to which this target links. 7 | set(CMAKE_TARGET_LINKED_INFO_FILES 8 | ) 9 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/build.make: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | # Delete rule output on recipe failure. 5 | .DELETE_ON_ERROR: 6 | 7 | 8 | #============================================================================= 9 | # Special targets provided by cmake. 10 | 11 | # Disable implicit rules so canonical targets will work. 12 | .SUFFIXES: 13 | 14 | 15 | # Remove some rules from gmake that .SUFFIXES does not remove. 16 | SUFFIXES = 17 | 18 | .SUFFIXES: .hpux_make_needs_suffix_list 19 | 20 | 21 | # Suppress display of executed commands. 22 | $(VERBOSE).SILENT: 23 | 24 | 25 | # A target that is always out of date. 26 | cmake_force: 27 | 28 | .PHONY : cmake_force 29 | 30 | #============================================================================= 31 | # Set environment variables for the build. 32 | 33 | # The shell in which to execute make rules. 34 | SHELL = /bin/sh 35 | 36 | # The CMake executable. 37 | CMAKE_COMMAND = /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake 38 | 39 | # The command to remove a file. 40 | RM = /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E remove -f 41 | 42 | # Escaping for special characters. 43 | EQUALS = = 44 | 45 | # The top-level source directory on which CMake was run. 46 | CMAKE_SOURCE_DIR = /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link 47 | 48 | # The top-level build directory on which CMake was run. 49 | CMAKE_BINARY_DIR = /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build 50 | 51 | # Include any dependencies generated for this target. 52 | include CMakeFiles/node-link.dir/depend.make 53 | 54 | # Include the progress variables for this target. 55 | include CMakeFiles/node-link.dir/progress.make 56 | 57 | # Include the compile flags for this target's objects. 58 | include CMakeFiles/node-link.dir/flags.make 59 | 60 | # Object files for target node-link 61 | node__link_OBJECTS = 62 | 63 | # External object files for target node-link 64 | node__link_EXTERNAL_OBJECTS = 65 | 66 | Release/node-link.node: CMakeFiles/node-link.dir/build.make 67 | Release/node-link.node: CMakeFiles/node-link.dir/link.txt 68 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Linking CXX shared library Release/node-link.node" 69 | $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/node-link.dir/link.txt --verbose=$(VERBOSE) 70 | 71 | # Rule to build all files generated by this target. 72 | CMakeFiles/node-link.dir/build: Release/node-link.node 73 | 74 | .PHONY : CMakeFiles/node-link.dir/build 75 | 76 | CMakeFiles/node-link.dir/requires: 77 | 78 | .PHONY : CMakeFiles/node-link.dir/requires 79 | 80 | CMakeFiles/node-link.dir/clean: 81 | $(CMAKE_COMMAND) -P CMakeFiles/node-link.dir/cmake_clean.cmake 82 | .PHONY : CMakeFiles/node-link.dir/clean 83 | 84 | CMakeFiles/node-link.dir/depend: 85 | cd /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/node-link.dir/DependInfo.cmake --color=$(COLOR) 86 | .PHONY : CMakeFiles/node-link.dir/depend 87 | 88 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "Release/node-link.pdb" 3 | "Release/node-link.node" 4 | ) 5 | 6 | # Per-language clean rules from dependency scanning. 7 | foreach(lang ) 8 | include(CMakeFiles/node-link.dir/cmake_clean_${lang}.cmake OPTIONAL) 9 | endforeach() 10 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/depend.internal: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/depend.make: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/flags.make: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/link.txt: -------------------------------------------------------------------------------- 1 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -D_DARWIN_USE_64_BIT_INODE=1 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILDING_NODE_EXTENSION -O3 -DNDEBUG -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -o Release/node-link.node -install_name @rpath/node-link.node 2 | -------------------------------------------------------------------------------- /build/CMakeFiles/node-link.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 1 2 | 3 | -------------------------------------------------------------------------------- /build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /build/Makefile: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.3 3 | 4 | # Default target executed when no arguments are given to make. 5 | default_target: all 6 | 7 | .PHONY : default_target 8 | 9 | # Allow only one "make -f Makefile2" at a time, but pass parallelism. 10 | .NOTPARALLEL: 11 | 12 | 13 | #============================================================================= 14 | # Special targets provided by cmake. 15 | 16 | # Disable implicit rules so canonical targets will work. 17 | .SUFFIXES: 18 | 19 | 20 | # Remove some rules from gmake that .SUFFIXES does not remove. 21 | SUFFIXES = 22 | 23 | .SUFFIXES: .hpux_make_needs_suffix_list 24 | 25 | 26 | # Suppress display of executed commands. 27 | $(VERBOSE).SILENT: 28 | 29 | 30 | # A target that is always out of date. 31 | cmake_force: 32 | 33 | .PHONY : cmake_force 34 | 35 | #============================================================================= 36 | # Set environment variables for the build. 37 | 38 | # The shell in which to execute make rules. 39 | SHELL = /bin/sh 40 | 41 | # The CMake executable. 42 | CMAKE_COMMAND = /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake 43 | 44 | # The command to remove a file. 45 | RM = /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -E remove -f 46 | 47 | # Escaping for special characters. 48 | EQUALS = = 49 | 50 | # The top-level source directory on which CMake was run. 51 | CMAKE_SOURCE_DIR = /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link 52 | 53 | # The top-level build directory on which CMake was run. 54 | CMAKE_BINARY_DIR = /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build 55 | 56 | #============================================================================= 57 | # Targets provided globally by CMake. 58 | 59 | # Special rule for the target edit_cache 60 | edit_cache: 61 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." 62 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) 63 | .PHONY : edit_cache 64 | 65 | # Special rule for the target edit_cache 66 | edit_cache/fast: edit_cache 67 | 68 | .PHONY : edit_cache/fast 69 | 70 | # Special rule for the target rebuild_cache 71 | rebuild_cache: 72 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." 73 | /Volumes/BNSWORKS/cloudedhazelnut/anaconda3/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) 74 | .PHONY : rebuild_cache 75 | 76 | # Special rule for the target rebuild_cache 77 | rebuild_cache/fast: rebuild_cache 78 | 79 | .PHONY : rebuild_cache/fast 80 | 81 | # The main all target 82 | all: cmake_check_build_system 83 | $(CMAKE_COMMAND) -E cmake_progress_start /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles/progress.marks 84 | $(MAKE) -f CMakeFiles/Makefile2 all 85 | $(CMAKE_COMMAND) -E cmake_progress_start /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/CMakeFiles 0 86 | .PHONY : all 87 | 88 | # The main clean target 89 | clean: 90 | $(MAKE) -f CMakeFiles/Makefile2 clean 91 | .PHONY : clean 92 | 93 | # The main clean target 94 | clean/fast: clean 95 | 96 | .PHONY : clean/fast 97 | 98 | # Prepare targets for installation. 99 | preinstall: all 100 | $(MAKE) -f CMakeFiles/Makefile2 preinstall 101 | .PHONY : preinstall 102 | 103 | # Prepare targets for installation. 104 | preinstall/fast: 105 | $(MAKE) -f CMakeFiles/Makefile2 preinstall 106 | .PHONY : preinstall/fast 107 | 108 | # clear depends 109 | depend: 110 | $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 111 | .PHONY : depend 112 | 113 | #============================================================================= 114 | # Target rules for targets named node-link 115 | 116 | # Build rule for target. 117 | node-link: cmake_check_build_system 118 | $(MAKE) -f CMakeFiles/Makefile2 node-link 119 | .PHONY : node-link 120 | 121 | # fast build rule for target. 122 | node-link/fast: 123 | $(MAKE) -f CMakeFiles/node-link.dir/build.make CMakeFiles/node-link.dir/build 124 | .PHONY : node-link/fast 125 | 126 | # Help Target 127 | help: 128 | @echo "The following are some of the valid targets for this Makefile:" 129 | @echo "... all (the default if no target is provided)" 130 | @echo "... clean" 131 | @echo "... depend" 132 | @echo "... edit_cache" 133 | @echo "... rebuild_cache" 134 | @echo "... node-link" 135 | .PHONY : help 136 | 137 | 138 | 139 | #============================================================================= 140 | # Special targets to cleanup operation of make. 141 | 142 | # Special rule to run CMake to check the build system integrity. 143 | # No rule that depends on this can have commands that come from listfiles 144 | # because they might be regenerated. 145 | cmake_check_build_system: 146 | $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 147 | .PHONY : cmake_check_build_system 148 | 149 | -------------------------------------------------------------------------------- /build/Release/node-link.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoonHaKim/node-link/fbf823dcf1fbebcf7903dee289e9a7e3d334498b/build/Release/node-link.node -------------------------------------------------------------------------------- /build/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: /Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "/usr/local") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | if(CMAKE_INSTALL_COMPONENT) 31 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 32 | else() 33 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 34 | endif() 35 | 36 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 37 | "${CMAKE_INSTALL_MANIFEST_FILES}") 38 | file(WRITE "/Volumes/BNSWORKS/cloudedhazelnut/Dropbox/CLOUDEDHAZELNUT/Dev/node-link/build/${CMAKE_INSTALL_MANIFEST}" 39 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 40 | -------------------------------------------------------------------------------- /node-link.cc: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | 6 | 7 | using namespace std; 8 | 9 | #include 10 | 11 | namespace LinkNode{ 12 | 13 | using v8::FunctionCallbackInfo; 14 | using v8::Isolate; 15 | using v8::Local; 16 | using v8::Object; 17 | using v8::String; 18 | using v8::Value; 19 | 20 | static InterfaceTable *ft; 21 | 22 | static ableton::Link *gLink = NULL; 23 | static float gTempo = 60.0; 24 | 25 | void Method(const FunctionCallbackInfo& args) { 26 | Isolate* isolate = args.GetIsolate(); 27 | args.GetReturnValue().Set(String::NewFromUtf8(isolate, "world")); 28 | } 29 | 30 | 31 | void enableLink(const FunctionCallbackInfo& args) { 32 | Isolate* isolate = args.GetIsolate(); 33 | 34 | ableton::Link link(gTempo); 35 | link.enable(true); 36 | gLink = &link; 37 | 38 | args.GetReturnValue().Set(String::NewFromUtf8(isolate, "world")); 39 | } 40 | void disableLink(const FunctionCallbackInfo& args) { 41 | Isolate* isolate = args.GetIsolate(); 42 | if (gLink!=NULL){ 43 | gLink.enable(false); 44 | } 45 | args.GetReturnValue().Set(String::NewFromUtf8(isolate, "world")); 46 | } 47 | 48 | 49 | 50 | 51 | //node 52 | void init(Local exports) { 53 | //Method를 Hello라는 이름으로 매칭 시킨다->addon.hello() 54 | NODE_SET_METHOD(exports, "hello", Method); 55 | 56 | NODE_SET_METHOD(exports, "enable", enableLink); 57 | NODE_SET_METHOD(exports, "disable", disableLink); 58 | 59 | 60 | } 61 | 62 | NODE_MODULE(LinkNode, init) 63 | 64 | }; 65 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-link", 3 | "version": "0.1.0", 4 | "description": "Ableton Link Wrapping Library for Node.js", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "cmake-js": "^6.0.0" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/UHKim/node-link.git" 12 | }, 13 | "author": "UHKim", 14 | "bugs": { 15 | "url": "https://github.com/UHKim/node-link/issues" 16 | }, 17 | "homepage": "https://github.com/UHKim/node-link#readme", 18 | "publishConfig": { "registry": "https://npm.pkg.github.com/" } 19 | } 20 | --------------------------------------------------------------------------------