{"id":550,"date":"2022-02-07T19:06:42","date_gmt":"2022-02-07T11:06:42","guid":{"rendered":"http:\/\/124.223.94.246\/?p=550"},"modified":"2022-02-07T19:17:23","modified_gmt":"2022-02-07T11:17:23","slug":"msys2-gcc%e5%8a%a8%e6%80%81%e5%ba%93%e4%bd%bf%e7%94%a8","status":"publish","type":"post","link":"https:\/\/www.xianwaizhiyin.net\/?p=550","title":{"rendered":"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528"},"content":{"rendered":"\n<p>\u4e0a\u7bc7\u6587\u7ae0\u662f\u300amsys2-gcc\u9759\u6001\u5e93\u4f7f\u7528\u300b\uff0c\u672c\u6587\u6765\u8bb2\u52a8\u6001\u5e93\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n\n\n\n<p><strong>myTest.h :<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >int my_test(int a, int b);<\/code><\/pre>\n\n\n\n<p><strong>myTest.c :<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >#include &quot;myTest.h&quot;\nint my_test(int a, int b) {\n    return a + b;\n}<\/code><\/pre>\n\n\n\n<p><strong>myMath.h :<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >int add(int a, int b);<\/code><\/pre>\n\n\n\n<p><strong>myMath.c:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >#include &quot;myMath.h&quot;\n#include &quot;myTest.h&quot;\nint add(int a, int b) {\n    return my_test(a,b);\n}<\/code><\/pre>\n\n\n\n<p><strong>main.c :<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >#include &lt;stdio.h&gt;\n#include &quot;myMath.h&quot;\nint main()\n{\n    int a = 3, b = 5;\n    printf(&quot;a+b=%d\\n&quot;, add(3, 5));\n    return 0;\n}<\/code><\/pre>\n\n\n\n<p>\u4ee3\u7801\u5df2\u7ecf\u5199\u597d\uff0c\u5148\u6267\u884c\u4e00\u4e0b\u547d\u4ee4\u7f16\u8bd1\u51fa .o \u540e\u7f00\u7684\u6587\u4ef6\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >gcc -c myMath.c -o myMath.o\ngcc -c myTest.c -o myTest.o\ngcc -c main.c -o main.o<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>-fPIC\uff1a\u4e5f\u53ef\u4ee5\u5199\u6210 -fpic\uff0c\u529f\u80fd\u662f\u4ee4 GCC \u7f16\u8bd1\u5668\u751f\u6210\u52a8\u6001\u94fe\u63a5\u5e93\u65f6\uff0c\u7528\u76f8\u5bf9\u5730\u5740\u8868\u793a\u5e93\u4e2d\u5404\u4e2a\u51fd\u6570\u548c\u53d8\u91cf\u7684\u5b58\u50a8\u4f4d\u7f6e\u3002\u8fd9\u6837\u505a\u7684\u597d\u5904\u662f\uff0c\u65e0\u8bba\u52a8\u6001\u94fe\u63a5\u5e93\u88ab\u52a0\u8f7d\u5230\u5185\u5b58\u7684\u4ec0\u4e48\u4f4d\u7f6e\uff0c\u90fd\u53ef\u4ee5\u88ab\u591a\u4e2a\u7a0b\u5e8f\uff08\u8fdb\u7a0b\uff09\u540c\u65f6\u8c03\u7528\uff1b<\/li><\/ul>\n\n\n\n<p>msys2 \u73af\u5883\u64cd\u4f5c\u4e0b\uff0cgcc \u751f\u6210\u7684\u52a8\u6001\u5e93\u662f xxx.dll \u7684\uff0c\u4e0d\u662fxxx.so\u3002<\/p>\n\n\n\n<p>\u8981\u7f16\u8bd1 mymath.dll \u52a8\u6001\u5e93 \uff0c\u5e38\u89c4\u7684\u505a\u6cd5\u662f <code class=\"prettyprint\" >gcc -c -fPIC myMath.c -o myMath.o<\/code> \uff0c\u628a C \u4ee3\u7801\u7f16\u8bd1\u6210 object \u6587\u4ef6\uff0c\u7136\u540e\u7528 <code>gcc -shared myMath.o -o mymath.dll -Wl,--out-implib,mymath.lib<\/code> \u628a object \u6587\u4ef6\u8f6c\u6210 .dll \u52a8\u6001\u5e93\u6587\u4ef6\u3002\u4f46\u6211\u4eec\u73b0\u5728\u6709\u4e00\u4e2a\u5d4c\u5957\u5e93 myTest \uff0c\u800c\u4e14\u4e0d\u60f3\u66b4\u9732\u7ed9\u522b\u4eba\uff0c\u8fd9\u65f6\u5019\u5e94\u8be5\u5982\u4f55\u7f16\u8bd1\u3002<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>-Wl \u8868\u793a\u540e\u9762\u7684\u5185\u5bb9\u662fld \u7684\u53c2\u6570\uff0c\u9700\u8981\u4f20\u9012\u7ed9 ld\u3002 --out-implib,mymath.lib \u8868\u793a\u8ba9ld \u751f\u6210\u4e00\u4e2a\u540d\u4e3a mymath.lib \u7684\u5bfc\u5165\u5e93\u3002<\/li><\/ul>\n\n\n\n<p>\u5176\u5b9e\u8ddf\u9759\u6001\u5e93\u7684\u7f16\u8bd1\u5dee\u4e0d\u591a\uff0c\u628a myTest.o \u6587\u4ef6\u52a0\u8fdb\u53bb\u5c31\u884c\uff0c<code class=\"prettyprint\" >gcc -shared myMath.o myTest.o -o mymath.dll -Wl,--out-implib,mymath.lib<\/code>\u3002\u6211\u4eec\u53ef\u4ee5\u7528\u4ee5\u4e0b\u4e24\u4e2a\u4e0d\u540c\u7684\u547d\u4ee4\u770b\u4e00\u4e0b\u751f\u6210\u7684 mymath.dll \u6709\u4ec0\u4e48\u533a\u522b\u3002<\/p>\n\n\n\n<p>\u7b2c\u4e00\u4e2a\u547d\u4ee4\uff1a<code class=\"prettyprint\" >gcc -shared myMath.o -o mymath_1.dll -Wl,--out-implib,mymath_1.lib<\/code><\/p>\n\n\n\n<p>\u7b2c\u4e8c\u4e2a\u547d\u4ee4\uff1a<code class=\"prettyprint\" >gcc -shared myMath.o myTest.o -o mymath_2.dll -Wl,--out-implib,mymath_2.lib<\/code><\/p>\n\n\n\n<p>\u7b2c\u4e00\u4e2a\u547d\u4ee4\u662f\u6ca1\u52a0 myTest.o \u7684\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"696\" height=\"213\" src=\"\/wp-content\/uploads\/2022\/02\/dll-1-1.png\" alt=\"\" class=\"wp-image-551\"\/><\/figure>\n\n\n\n<p>\u7b2c\u4e00\u4e2a\u547d\u4ee4\u76f4\u63a5\u62a5\u9519\u4e86\uff0c\u90a3\u5c31\u4e0d\u7ba1\u8df3\u8fc7\uff0c\u54b1\u4eec\u6765\u770b\u770b mymath_2.dll \u8ddf myMath.o myTest.o \u7684\u5185\u5bb9\u6709\u6ca1\u76f8\u540c\u7684\u5730\u65b9\u3002\u5982\u4e0b\u56fe\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1904\" height=\"995\" src=\"\/wp-content\/uploads\/2022\/02\/dll-1-2.png\" alt=\"\" class=\"wp-image-552\"\/><\/figure>\n\n\n\n<p>\u53ef\u4ee5\u770b\u5230 .so \u6587\u4ef6\uff0c\u5176\u5b9e\u4e5f\u662f\u62e5\u6709 myTest.o \u8ddf myMath.o \u91cc\u9762\u7684\u90e8\u5206\u5185\u5bb9\u3002\u6240\u4ee5\u65e0\u8bba\u662f\u9759\u6001\u5e93\u8fd8\u662f\u52a8\u6001\u5e93\uff0c\u4ed6\u4eec\u90fd\u662f\u628a\u4e00\u5806 .o \u6587\u4ef6\u5408\u5728\u4e00\u4e2a\u6587\u4ef6\u91cc\u9762\uff0c\u53ea\u4e0d\u8fc7\u52a8\u6001\u5e93 .so \u52a0\u4e86\u4e00\u4e2a\u9644\u52a0\u4fe1\u606f\u6765\u5b9e\u73b0\u52a8\u6001\u52a0\u8f7d\uff0c\u9759\u6001\u5e93\u52a0\u4e86\u4e00\u4e9b\u9644\u52a0\u4fe1\u606f\u6765\u5b9e\u73b0\u9759\u6001\u52a0\u8f7d\u3002<\/p>\n\n\n\n<p>\u6b64\u65f6\uff0c myTest.o \u8ddf myMath.o \u5df2\u7ecf\u6ca1\u7528\u4e86\uff0c\u53ef\u4ee5\u5220\u9664\uff0c\u53ea\u9700\u8981\u628a mymath_2.dll \u7ed9\u522b\u4eba\u7528\u5c31\u884c\uff0c\u53ef\u4ee5\u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\u751f\u6210 main \u53ef\u6267\u884c\u6587\u4ef6\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >#\u7b2c\u4e00\u79cd\u65b9\u5f0f\ngcc main.o mymath_2.dll -o main.exe<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >#\u7b2c\u4e8c\u79cd\u65b9\u5f0f\ngcc main.o -o main -lmymath_2 -L.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"695\" height=\"208\" src=\"\/wp-content\/uploads\/2022\/02\/dll-1-3.png\" alt=\"\" class=\"wp-image-553\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><strong>\u76f8\u5173\u9605\u8bfb\uff1a<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><a href=\"https:\/\/blog.csdn.net\/liyuanbhu\/article\/details\/42612365\">\u300aMinGW gcc \u751f\u6210\u52a8\u6001\u94fe\u63a5\u5e93 dll \u7684\u4e00\u4e9b\u95ee\u9898\u6c47\u603b\u300b<\/a><\/li><\/ol>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>\u7531\u4e8e\u7b14\u8005\u7684\u6c34\u5e73\u6709\u9650\uff0c \u52a0\u4e4b\u7f16\u5199\u7684\u540c\u65f6\u8fd8\u8981\u53c2\u4e0e\u5f00\u53d1\u5de5\u4f5c\uff0c\u6587\u4e2d\u96be\u514d\u4f1a\u51fa\u73b0\u4e00\u4e9b\u9519\u8bef\u6216\u8005\u4e0d\u51c6\u786e\u7684\u5730\u65b9\uff0c\u6073\u8bf7\u8bfb\u8005\u6279\u8bc4\u6307\u6b63\u3002\u5982\u679c\u8bfb\u8005\u6709\u4efb\u4f55\u5b9d\u8d35\u610f\u89c1\uff0c\u53ef\u4ee5\u52a0\u6211\u5fae\u4fe1 Loken1\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e0a\u7bc7\u6587\u7ae0\u662f\u300amsys2-gcc\u9759\u6001\u5e93\u4f7f\u7528\u300b\uff0c\u672c\u6587\u6765\u8bb2\u52a8\u6001\u5e93\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a myTest.h : myTest.c [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-550","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528 - \u5f26\u5916\u4e4b\u97f3<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.xianwaizhiyin.net\/?p=550\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528 - \u5f26\u5916\u4e4b\u97f3\" \/>\n<meta property=\"og:description\" content=\"\u4e0a\u7bc7\u6587\u7ae0\u662f\u300amsys2-gcc\u9759\u6001\u5e93\u4f7f\u7528\u300b\uff0c\u672c\u6587\u6765\u8bb2\u52a8\u6001\u5e93\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a myTest.h : myTest.c [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xianwaizhiyin.net\/?p=550\" \/>\n<meta property=\"og:site_name\" content=\"\u5f26\u5916\u4e4b\u97f3\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-07T11:06:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-07T11:17:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/02\/dll-1-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"loken\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#website\",\"url\":\"https:\/\/www.xianwaizhiyin.net\/\",\"name\":\"\u5f26\u5916\u4e4b\u97f3\",\"description\":\"FFmpeg\u3001WebRTC\uff0cSRS \u97f3\u89c6\u9891\u3001\u6d41\u5a92\u4f53\u6280\u672f\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.xianwaizhiyin.net\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=550#primaryimage\",\"inLanguage\":\"zh-Hans\",\"url\":\"\/wp-content\/uploads\/2022\/02\/dll-1-1.png\",\"contentUrl\":\"\/wp-content\/uploads\/2022\/02\/dll-1-1.png\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=550#webpage\",\"url\":\"https:\/\/www.xianwaizhiyin.net\/?p=550\",\"name\":\"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528 - \u5f26\u5916\u4e4b\u97f3\",\"isPartOf\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=550#primaryimage\"},\"datePublished\":\"2022-02-07T11:06:42+00:00\",\"dateModified\":\"2022-02-07T11:17:23+00:00\",\"author\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=550#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xianwaizhiyin.net\/?p=550\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=550#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.xianwaizhiyin.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3\",\"name\":\"loken\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#personlogo\",\"inLanguage\":\"zh-Hans\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g\",\"caption\":\"loken\"},\"sameAs\":[\"https:\/\/www.xianwaizhiyin.net\/\"],\"url\":\"https:\/\/www.xianwaizhiyin.net\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528 - \u5f26\u5916\u4e4b\u97f3","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.xianwaizhiyin.net\/?p=550","og_locale":"zh_CN","og_type":"article","og_title":"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528 - \u5f26\u5916\u4e4b\u97f3","og_description":"\u4e0a\u7bc7\u6587\u7ae0\u662f\u300amsys2-gcc\u9759\u6001\u5e93\u4f7f\u7528\u300b\uff0c\u672c\u6587\u6765\u8bb2\u52a8\u6001\u5e93\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a myTest.h : myTest.c [&hellip;]","og_url":"https:\/\/www.xianwaizhiyin.net\/?p=550","og_site_name":"\u5f26\u5916\u4e4b\u97f3","article_published_time":"2022-02-07T11:06:42+00:00","article_modified_time":"2022-02-07T11:17:23+00:00","og_image":[{"url":"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/02\/dll-1-1.png"}],"twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"loken","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/www.xianwaizhiyin.net\/#website","url":"https:\/\/www.xianwaizhiyin.net\/","name":"\u5f26\u5916\u4e4b\u97f3","description":"FFmpeg\u3001WebRTC\uff0cSRS \u97f3\u89c6\u9891\u3001\u6d41\u5a92\u4f53\u6280\u672f","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xianwaizhiyin.net\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"ImageObject","@id":"https:\/\/www.xianwaizhiyin.net\/?p=550#primaryimage","inLanguage":"zh-Hans","url":"\/wp-content\/uploads\/2022\/02\/dll-1-1.png","contentUrl":"\/wp-content\/uploads\/2022\/02\/dll-1-1.png"},{"@type":"WebPage","@id":"https:\/\/www.xianwaizhiyin.net\/?p=550#webpage","url":"https:\/\/www.xianwaizhiyin.net\/?p=550","name":"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528 - \u5f26\u5916\u4e4b\u97f3","isPartOf":{"@id":"https:\/\/www.xianwaizhiyin.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xianwaizhiyin.net\/?p=550#primaryimage"},"datePublished":"2022-02-07T11:06:42+00:00","dateModified":"2022-02-07T11:17:23+00:00","author":{"@id":"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3"},"breadcrumb":{"@id":"https:\/\/www.xianwaizhiyin.net\/?p=550#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xianwaizhiyin.net\/?p=550"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.xianwaizhiyin.net\/?p=550#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.xianwaizhiyin.net\/"},{"@type":"ListItem","position":2,"name":"msys2-gcc\u52a8\u6001\u5e93\u4f7f\u7528"}]},{"@type":"Person","@id":"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3","name":"loken","image":{"@type":"ImageObject","@id":"https:\/\/www.xianwaizhiyin.net\/#personlogo","inLanguage":"zh-Hans","url":"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g","caption":"loken"},"sameAs":["https:\/\/www.xianwaizhiyin.net\/"],"url":"https:\/\/www.xianwaizhiyin.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts\/550","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=550"}],"version-history":[{"count":2,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts\/550\/revisions"}],"predecessor-version":[{"id":561,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts\/550\/revisions\/561"}],"wp:attachment":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=550"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=550"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=550"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}