Where Online Learning is simpler!
The C and C++ Include Header Files
cat -n /usr/include/wabt/feature.def
1 /* 2 * Copyright 2017 WebAssembly Community Group participants 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef WABT_FEATURE 18 #error "You must define WABT_FEATURE before including this file." 19 #endif 20 21 /* 22 * variable flag default help 23 * ========================================================================= */ 24 25 WABT_FEATURE(exceptions, "exceptions", false, "Experimental exception handling") 26 WABT_FEATURE(mutable_globals, "mutable-globals", true, "Import/export mutable globals") 27 WABT_FEATURE(sat_float_to_int, "saturating-float-to-int", true, "Saturating float-to-int operators") 28 WABT_FEATURE(sign_extension, "sign-extension", true, "Sign-extension operators") 29 WABT_FEATURE(simd, "simd", true, "SIMD support") 30 WABT_FEATURE(threads, "threads", false, "Threading support") 31 WABT_FEATURE(function_references, "function-references", false, "Typed function references") 32 WABT_FEATURE(multi_value, "multi-value", true, "Multi-value") 33 WABT_FEATURE(tail_call, "tail-call", false, "Tail-call support") 34 WABT_FEATURE(bulk_memory, "bulk-memory", true, "Bulk-memory operations") 35 WABT_FEATURE(reference_types, "reference-types", true, "Reference types (externref)") 36 WABT_FEATURE(annotations, "annotations", false, "Custom annotation syntax") 37 WABT_FEATURE(code_metadata, "code-metadata", false, "Code metadata") 38 WABT_FEATURE(gc, "gc", false, "Garbage collection") 39 WABT_FEATURE(memory64, "memory64", false, "64-bit memory") 40 WABT_FEATURE(multi_memory, "multi-memory", false, "Multi-memory") 41 WABT_FEATURE(extended_const, "extended-const", false, "Extended constant expressions") 42 WABT_FEATURE(relaxed_simd, "relaxed-simd", false, "Relaxed SIMD")