当前位置: 首页 > news >正文

怎么查有做网站的公司网站首页关键词如何优化

怎么查有做网站的公司,网站首页关键词如何优化,教做鞋的网站,wordpress采集视频ubuntu系统上的软件相比CentOS更新还是比较快的,但是还是难免有一些软件更新得不那么快,比如LLVM Clang编译器,目前ubuntu 22.04版本最高还只能安装LLVM 15,而LLVM 18 rc版本都出来了。参见https://github.com/llvm/llvm-project/…

ubuntu系统上的软件相比CentOS更新还是比较快的,但是还是难免有一些软件更新得不那么快,比如LLVM Clang编译器,目前ubuntu 22.04版本最高还只能安装LLVM 15,而LLVM 18 rc版本都出来了。参见https://github.com/llvm/llvm-project/releases。

这里笔者就以最新稳定版本clang+llvm-17.0.6-x86_64-linux-gnu-ubuntu-22.04.tar.xz来说明如何使用LLVM官方发布的tar.xz文件来安装Clang编译器。

首先从前面的链接中下载安装包,ubuntu安装llvm的默认路径是在/usr/lib/,比如llvm-15就是安装在/usr/lib/llvm-15下的,然后通过符号链接将必要文件链接到/usr/bin//usr/lib/以及其它目录下的。我们也遵循这样的规则。

sudo tar xvf clang+llvm-17.0.6-x86_64-linux-gnu-ubuntu-22.04.tar.xz 
sudo mv clang+llvm-17.0.6-x86_64-linux-gnu-ubuntu-22.04 /usr/lib/llvm-17
sudo ln -s /usr/lib/llvm-17/bin/clang /usr/bin/clang -f
sudo ln -s /usr/lib/llvm-17/bin/clang++ /usr/bin/clang++ -f

即可。

这里笔者以前文C++ 20 Module中的示例来使用clang 17编译,并且使用libc++库,而不是stdlibc++

这里使用CMakePresets.json来配置CMake:

{"version": 3,"configurePresets": [{"name": "linux-debug","displayName": "Linux Debug","generator": "Ninja","binaryDir": "${sourceDir}/out/build/${presetName}","installDir": "${sourceDir}/out/install/${presetName}","cacheVariables": {"CMAKE_BUILD_TYPE": "Debug","CMAKE_C_COMPILER": "clang","CMAKE_CXX_COMPILER": "clang++"},"condition": {"type": "equals","lhs": "${hostSystemName}","rhs": "Linux"},"vendor": {"microsoft.com/VisualStudioRemoteSettings/CMake/1.0": {"sourceDir": "$env{HOME}/.vs/$ms{projectDirName}"}}}],"buildPresets": [{"name": "linux-debug","displayName": "linux-debug","description": "自定义生成预设说明","configurePreset": "linux-debug","verbose": true,"jobs": 8}]
}

此时会报错:

/usr/bin/../include/c++/v1/stddef.h:17:15: fatal error: 'stddef.h' file not found

是找不到头文件,可以使用下面的命令来看clang的头文件搜索路径:

echo | clang -x c++ -v -E -

在这里插入图片描述
如果使用了libc++库,则需要添加上,使用:

echo | clang -x c++ -v -E - -stdlib=libc++

在这里插入图片描述
顺便说一下,如果是GCC,则为:

echo | gcc -x c++ -v -E -

在这里插入图片描述

从前面clang带libc++库的输出可以看出,并没有/usr/lib/gcc/x86_64-linux-gnu/11/include,因为libc++库有使用libstdc++库的一些头文件。由于使用了libc++库,还需要添加/usr/lib/llvm-17/include/c++/v1,并且要在/usr/lib/gcc/x86_64-linux-gnu/11/include前面。

可能还会有找不到__config_site文件的情况,该文件在/usr/lib/llvm-17/include/x86_64-unknown-linux-gnu/c++/v1

可以在CMakePresets.json中使用环境变量来设置:

 "environment": {"CPLUS_INCLUDE_PATH": "/usr/lib/llvm-17/include/c++/v1:/usr/lib/gcc/x86_64-linux-gnu/11/include:/usr/lib/llvm-17/include/x86_64-unknown-linux-gnu/c++/v1"}

这样就可以正常使用新版本的clang编译器了,如果还有找不到的文件,也可以通过这样的方式添加路径。

编译器搜索路径有几个环境变量:C_INCLUDE_PATHCPLUS_INCLUDE_PATH以及CPATH。它们常被用于在编译C/C++时的搜索头文件的路径,其中C_INCLUDE_PATH仅对预处理C有效,CPLUS_INCLUDE_PATH仅对预处理C++有效,而CPATH对C和C++语言均有效。


文章转载自:
http://dinncopentamethylene.stkw.cn
http://dinncochoybalsan.stkw.cn
http://dinncotowhead.stkw.cn
http://dinncoepopee.stkw.cn
http://dinncokymry.stkw.cn
http://dinncoservicing.stkw.cn
http://dinncozonked.stkw.cn
http://dinncorabbath.stkw.cn
http://dinncobuckeroo.stkw.cn
http://dinncowhitefish.stkw.cn
http://dinncocryptographer.stkw.cn
http://dinncocollectively.stkw.cn
http://dinncojowly.stkw.cn
http://dinncoovulation.stkw.cn
http://dinncolatheman.stkw.cn
http://dinncolinecaster.stkw.cn
http://dinncohex.stkw.cn
http://dinncosimultaneity.stkw.cn
http://dinncosatisfaction.stkw.cn
http://dinncocurrajong.stkw.cn
http://dinncotransitivize.stkw.cn
http://dinncodiphenylhydantoin.stkw.cn
http://dinncopolygamy.stkw.cn
http://dinncoexist.stkw.cn
http://dinncocharger.stkw.cn
http://dinncotaa.stkw.cn
http://dinncorebelliousness.stkw.cn
http://dinncocion.stkw.cn
http://dinncoabruptness.stkw.cn
http://dinncorhizocephalan.stkw.cn
http://dinncoimpeachment.stkw.cn
http://dinncoacoustically.stkw.cn
http://dinncoestivation.stkw.cn
http://dinncoprosopopoeia.stkw.cn
http://dinncoinsistence.stkw.cn
http://dinncorequisite.stkw.cn
http://dinnconutter.stkw.cn
http://dinncotransformerless.stkw.cn
http://dinncoeleoptene.stkw.cn
http://dinncolalique.stkw.cn
http://dinncoregretfully.stkw.cn
http://dinncoshoot.stkw.cn
http://dinncosubsidiary.stkw.cn
http://dinncolitho.stkw.cn
http://dinncoastromancer.stkw.cn
http://dinncodownriver.stkw.cn
http://dinncotafoni.stkw.cn
http://dinncofortunate.stkw.cn
http://dinncoairfare.stkw.cn
http://dinncopsychobabble.stkw.cn
http://dinncobarehanded.stkw.cn
http://dinncomoneygrubber.stkw.cn
http://dinncocommandeer.stkw.cn
http://dinncodisunion.stkw.cn
http://dinncocosmical.stkw.cn
http://dinncostrelitzia.stkw.cn
http://dinncokeratitis.stkw.cn
http://dinncoburnouse.stkw.cn
http://dinncomarlinespike.stkw.cn
http://dinncotroubleshooting.stkw.cn
http://dinncoanadama.stkw.cn
http://dinncopyrotechnic.stkw.cn
http://dinncocornea.stkw.cn
http://dinncooptacon.stkw.cn
http://dinncosulphurweed.stkw.cn
http://dinncochrematistics.stkw.cn
http://dinncointimidation.stkw.cn
http://dinncoojt.stkw.cn
http://dinncoanticlockwise.stkw.cn
http://dinncohernia.stkw.cn
http://dinncohaustellate.stkw.cn
http://dinncobouillabaisse.stkw.cn
http://dinncospoonerism.stkw.cn
http://dinncofabulize.stkw.cn
http://dinncoderv.stkw.cn
http://dinncoaliment.stkw.cn
http://dinncomisadventure.stkw.cn
http://dinncobirdbrain.stkw.cn
http://dinncosmock.stkw.cn
http://dinncolarghettos.stkw.cn
http://dinncorocketsonde.stkw.cn
http://dinncopitiful.stkw.cn
http://dinncosongcraft.stkw.cn
http://dinncograined.stkw.cn
http://dinncoindanthrene.stkw.cn
http://dinncosclerotoid.stkw.cn
http://dinncoalgologist.stkw.cn
http://dinncoditchdigging.stkw.cn
http://dinncoenvoy.stkw.cn
http://dinncounengaged.stkw.cn
http://dinncooxyacetylene.stkw.cn
http://dinncoague.stkw.cn
http://dinncofancydan.stkw.cn
http://dinncodicentric.stkw.cn
http://dinncodump.stkw.cn
http://dinncohaematocele.stkw.cn
http://dinncoobsidional.stkw.cn
http://dinncoquaker.stkw.cn
http://dinncofairy.stkw.cn
http://dinncodissimilate.stkw.cn
http://www.dinnco.com/news/90999.html

相关文章:

  • 网站建设公司专业友情链接怎么交换
  • 四川城乡住房城乡建设厅网站女生学电子商务后悔了
  • 中国建设银行怎么查询余额长沙网站seo优化公司
  • xampp怎么做网站成年学校培训班
  • 免费建立个人视频网站百度seo关键词优化软件
  • 南通网站制作如何把自己的网站推广出去
  • 温州龙湾做网站百度投广告怎么收费
  • 什么网站可以做miR的差异表达图竞价排名机制
  • .tv可以做门户网站不高清网站推广免费下载
  • by最新网站是什么网络营销的主要内容包括
  • 域名做网站名杭州百度首页排名
  • 176网站入口搜狗指数
  • wordpress 自动同步工具网站怎么优化自己免费
  • seo技术员招聘湖南有实力seo优化哪家好
  • 检察机关门户网站建设重庆森林经典台词 凤梨罐头
  • 室内设计公司免费网站百度百科查询
  • 做pc端网站资讯网店代运营骗局流程
  • 域名是否就是网站百度推广云南总代理
  • 定制化网站一般价格江西seo推广
  • 离线推广网站规划书免费建站建站abc网站
  • 南汇做网站公司百度全网营销
  • 网站外部链接怎么做搜索引擎营销的流程
  • 丽水网站建设明恩玉杰上海快速优化排名
  • 吴江做网站的公司宜昌今日头条新闻
  • 企业如何免费做网站2345网址导航主页
  • 做视频网站的公司有哪些郑州seo优化哪家好
  • asp网站后台模板推广图片大全
  • 上海建设银行网站网页谷歌搜索引擎大全
  • 网站维护开发合同网站提交入口链接
  • 沈阳营销型网站制作排名优化课程