目录
类型1:新引入一个包后出现
- 有时新引入一个包之后,就出现了这个构建失败,但又不说错误原因:
Launching lib\main.dart on Windows in debug mode...
Nuget.exe not found, trying to download or use cached version.
Building Windows application... 35.1s
Exception: Build process failed.
- 一开始一直是一头雾水,不过我这个是在构建windows上的,因此我们可以手动用 visual studio 打开flutter生成的构建项目,自己来构建一下,看看vs有没有更详细的错误信息:
- 首先在 {flutter项目}/build/windows/,应该会存在一个 {项目名}.sln 文件,在文件管理器双击使用vs打开或者直接在vs里选择打开它也行:
- 在vs中,在左侧的 解决方案 上,点击鼠标右键,然后点击 生成解决方案:
- 然后vs底部会弹出 输出信息 窗口,里面会打印编译过程的信息,现在我们需要仔细查看里面错误的原因:
......
16>D:\0Acoolight\Program\flutter\mymusic\windows\flutter\ephemeral\.plugin_symlinks\desktop_multi_window\windows\flutter_window.cc(22,10): fatal error C1083: 无法打开包括文件: “window_size/window_size_plugin.h”: No such file or directory
16>window_channel.cc
9>正在生成代码...
9> 正在创建库 D:/0Acoolight/Program/flutter/mymusic/build/windows/plugins/media_kit_video/Debug/media_kit_video_plugin.lib 和对象 D:/0Acoolight/Program/flutter/mymusic/build/windows/plugins/media_kit_video/Debug/media_kit_video_plugin.exp
9>media_kit_video_plugin.vcxproj -> D:\0Acoolight\Program\flutter\mymusic\build\windows\plugins\media_kit_video\Debug\media_kit_video_plugin.dll
16>base_flutter_window.cc
16>正在生成代码...
16>已完成生成项目“desktop_multi_window_plugin.vcxproj”的操作 - 失败。
17>------ 已启动生成: 项目: mymusic, 配置: Debug x64 ------
17>Building Custom Rule D:/0Acoolight/Program/flutter/mymusic/windows/runner/CMakeLists.txt
17>flutter_window.cpp
17>main.cpp
17>utils.cpp
17>win32_window.cpp
17>generated_plugin_registrant.cc
17>正在生成代码...
17>LINK : fatal error LNK1104: 无法打开文件“..\plugins\desktop_multi_window\Debug\desktop_multi_window_plugin.lib”
17>已完成生成项目“mymusic.vcxproj”的操作 - 失败。
18>------ 已启动生成: 项目: ALL_BUILD, 配置: Debug x64 ------
18>Building Custom Rule D:/0Acoolight/Program/flutter/mymusic/windows/CMakeLists.txt
19>------ 已启动生成: 项目: INSTALL, 配置: Debug x64 ------
19>-- Install configuration: "Debug"
19>CMake Error at cmake_install.cmake:115 (file):
19> file INSTALL cannot find
19> "D:/0Acoolight/Program/flutter/mymusic/build/windows/runner/Debug/mymusic.exe":
19> No error.
19>
19>
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: 命令“setlocal
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DBUILD_TYPE=Debug -P cmake_install.cmake
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: if %errorlevel% neq 0 goto :cmEnd
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :cmEnd
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :cmErrorLevel
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: exit /b %1
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :cmDone
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: if %errorlevel% neq 0 goto :VCEnd
19>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :VCEnd”已退出,代码为 1。
19>已完成生成项目“INSTALL.vcxproj”的操作 - 失败。
========== 生成: 16 成功,3 失败,0 最新,0 已跳过 ==========
- 我这里vs说是因为:无法打开包括文件: “window_size/window_size_plugin.h”: No such file or directory
- 也就是某个库依赖了 window_size 这个包,但我没装,因此去 pub.dev 上找它然后添加到flutter的 pubspec.yaml 文件中就可以了,但 window_size 这个包并没有在 pub.dev 中,百度发现它是 谷歌 放在github上的一个插件,因此就直接去拉github:
window_size:
git:
url: https://github.com/google/flutter-desktop-embedding
path: plugins/window_size
- 改完直接在flutter里重新构建试试就可以了:flutter run
类型2:有时候突然发癫
- 最近就遇到它突然发癫,怎么搞都失败,而且错误提示有的时候会是这样的:
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: ���setlocal [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DBUILD_TYPE=Debug -P cmake_install.cmake [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: if %errorlevel% neq 0 goto :cmEnd [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :cmEnd [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :cmErrorLevel [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: exit /b %1 [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :cmDone [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: if %errorlevel% neq 0 goto :VCEnd [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppCommon.targets(159,5): error MSB3073: :VCEnd�����˳�������Ϊ 1�� [D:\0Acoolight\Program\flutter\mymusic\build\windows\INSTALL.vcxproj]
Building Windows application... 33.3s
Exception: Build process failed.
- 百度查了下,大概的意思是 cmake 的install的时候想对c盘的一个路径进行写入,但权限不够???但是如果这是正确的行为,之前怎么能正常跑呢,emmm,所以我并不打算用管理员权限运行vscode来尝试,而是寻找其他办法。
- 在百度中翻到一篇有类似的报错,其中有回复解决办法是:
- 打开visual studio安装程序,单击修改,然后打开单个组件。
- 选择最新的Windows 10 SDK版本并安装。
- vs的安装程序可以按一下win键,然后在软件列表里找它:visual studio installer
- 点击 修改:
- 点击顶部的 单个组件 :
- 然后在搜索框中搜索 “win”,在搜索结果中选中一个 windows 10 SDK,然后点击右下角的修改即可:
- 等它下载安装完成后,回到flutter项目,最好 执行 flutter clean 清理一下,然后重新构建试试 flutter run
类型3:突然发癫解决办法-2
- 最近就遇到,按类型2也解决不了,然后看报错里有提示是一些库需要include的系统头文件不存在,后来乱尝试之后发现,由于项目依赖的部分库在build时会向github下载一下压缩包等文件下来,然后才开始构建;而一旦网络问题,第一次下载失败后,即使我手动下载了文件然后复制到build文件夹内,它最终仍然会构建失败。需要第一次下载就成功并顺着进行构建,它最后才不会报错。
- 因此,我找出了它要下载的文件,然后先 flutter clean 清理一下,再手动新建build文件夹,并把它需要的文件先放在它要的位置,然后再回到flutter执行 flutter run,这时它会发现已经存在目标文件,就不需要下载了,然后就开始跑构建,一路下来就生成成功了,问题解决~
Pineal XT is a revolutionary supplement that promotes proper pineal gland function and energy levels to support healthy body function. https://pinealxt-web.com/
GlucoBerry is one of the biggest all-natural dietary and biggest scientific breakthrough formulas ever in the health industry today. This is all because of its amazing high-quality cutting-edge formula that helps treat high blood sugar levels very naturally and effectively. https://glucoberry-web.com/
Zeneara is marketed as an expert-formulated health supplement that can improve hearing and alleviate tinnitus, among other hearing issues. https://zeneara-web.com/
The human body can continue to live thanks to the correct functioning of certain systems. If even one of these systems does not work properly, it can cause problems in human life. https://calmlean-web.com/
Fun88 เป็นเว็บไซต์ที่น่าสนใจสำหรับผู้ที่หลงใหลในการเล่นการพนันออนไลน์ ทางเข้าที่เร็วและปลอดภัยของเว็บไซต์นี้จะทำให้คุณสามารถเข้าถึงการเดิมพันบอลและคาสิโนสดได้อย่างรวดเร็วและปลอดภัยทุกวัน.
แจก รหัส คูปอง โบนัส fun88 มีทางเข้าที่รวดเร็วที่สุด คุณไม่ต้องเสียเวลาในการรอหรือโหลดหน้าเว็บนานเนื่องจากความเร็วของระบบที่พร้อมให้บริการตลอดเวลา ทำให้คุณสามารถเพลิดเพลินกับการเดิมพันที่คุณชื่นชอบได้อย่างต่อเนื่อง.
แทงหวยเว บ fun88
Cerebrozen is an excellent liquid ear health supplement purported to relieve tinnitus and improve mental sharpness, among other benefits. The Cerebrozen supplement is made from a combination of natural ingredients, and customers say they have seen results in their hearing, focus, and memory after taking one or two droppers of the liquid solution daily for a week. https://cerebrozen-try.com/
Boostaro is a dietary supplement designed specifically for men who suffer from health issues. https://boostaro-try.com/
ขอบคุณสำหรับการแบ่งปันและยินดีต้อนรับสู่ Fun88 แพลตฟอร์มทันสมัยที่ผู้เล่นจะเพลิดเพลินไปกับประสบการณ์ผลิตภัณฑ์ที่หลากหลายและหลากหลาย
ดาวน์โหลด fun88
Protoflow is a prostate health supplement featuring a blend of plant extracts, vitamins, minerals, fruit extracts, and more. https://protoflow-web.com/
PowerBite stands as an innovative dental candy, dedicated to nurturing healthy teeth and gums. Infused with a potent formula, it champions the cause of a robust and radiant smile. Crafted meticulously https://powerbite-web.com/
100% Natural Formula Expressly Designed to Help Control Blood Sugar Levels, Improve Insulin Response And Support Overall Health https://glucotrusttry.com/
The ProNail Complex is a meticulously-crafted natural formula which combines extremely potent oils and skin-supporting vitamins. https://pronailcomplex-web.com/https://pronailcomplex-web.com/
Fast Lean Pro is a herbal supplement that tricks your brain into imagining that you’re fasting and helps you maintain a healthy weight no matter when or what you eat. It offers a novel approach to reducing fat accumulation and promoting long-term weight management. https://fastleanpro-web.com/
Gut Vita™ is a daily supplement that helps consumers to improve the balance in their gut microbiome, which supports the health of their immune system. It supports healthy digestion, even for consumers who have maintained an unhealthy diet for a long time. https://gutvita-us.com/
FoliPrime is a simple serum containing a blend of vitamins designed to boost hair health. FoliPrime has 100 percent natural substances that enhance and supplement the vitamins in the scalp to promote hair growth. https://foliprime-web.com/
AquaPeace is an all-natural nutritional formula that uses a proprietary and potent blend of ingredients and nutrients to improve overall ear and hearing health and alleviate the symptoms of tinnitus. https://aquapeace-web.com
Progenifix is designed to help maximize weight loss results using a mixture of natural, science-backed ingredients. The formula also has secondary benefits, including promoting overall wellness and vitality and assisting your immune system. https://progenifix-web.com/
Vivo Tonic is a remarkable blood sugar support nutritional supplement that offers a wide range of benefits. https://vivotonic-web.com/
Alpha Tonic is a powder-based supplement that uses multiple natural herbs and essential vitamins and minerals to help optimize your body’s natural testosterone levels. https://alphatonic-web.com
GlucoFlush is an advanced formula specially designed for pancreas support that will let you promote healthy weight by effectively maintaining the blood sugar level and cleansing and strengthening your gut. https://glucoflush-us.com/
Sugar Balance is an ultra-potent blood sugar supplement that you can use to help control glucose levels, melt away fat and improve your overall health. https://sugarbalance-us.com/
BioFit is a Nutritional Supplement That Uses Probiotics To Help You Lose Weight https://biofit-web.com/
FlowForce Max is an innovative, natural and effective way to address your prostate problems, while addressing your energy, libido, and vitality. https://flowforcemax-web.com/
Fun88 เป็นเว็บไซต์การพนันออนไลน์ชั้นนำของเอเชียที่นำเสนอเกมที่หลากหลาย รวมถึงการพนันกีฬา คาสิโนออนไลน์ ลอตเตอรี่ สล็อต และอื่นๆ อีกมากมาย เมื่อเข้าสู่ระบบ Fun88 ผู้เล่นจะเข้าสู่แพลตฟอร์มที่ทันสมัยพร้อมผลิตภัณฑ์ที่หลากหลายให้เลือก เว็บไซต์เสนอราคาเดิมพันที่ดีที่สุดพร้อมทั้งโปรโมชั่นที่น่าสนใจมากมาย
ทางเข้าล่าสุด:เว บ พน น fun88
ONLINE EXCLUSIVE OFFER! Only Available for purchase on the official website. Secure Your Package while stocks last https://prodentim-web.com
Burn Boost Powder™ is a proven weight loss powder drink that helps to lose weight and boosts the overall metabolism in the body. https://burnboost-web.com
Peak BioBoost is a revolutionary dietary supplement that leverages the power of nature to support and improve your digestive system. https://peakbioboost-web.com/
Support the health of your ears with 100% natural ingredients, finally being able to enjoy your favorite songs and movies https://quietumplus-try.com/
BalMorex Pro is an exceptional solution for individuals who suffer from chronic joint pain and muscle aches. With its 27-in-1 formula comprised entirely of potent and natural ingredients, it provides unparalleled support for the health of your joints, back, and muscles. https://balmorex-try.com/
MenoPhix is a menopause relief supplement featuring a blend of plant extracts to target the root cause of menopause symptoms. https://menophix-web.com/
Tonic Greens is a ready-made greens shake designed to support the entire body and wellness of the mind. It is filled with over 50 individual vitamins https://tonicgreens-try.com/
Serolean, a revolutionary weight loss supplement, zeroes in on serotonin—the key neurotransmitter governing mood, appetite, and fat storage. https://serolean-web.com/
ZenCortex Research’s contains only the natural ingredients that are effective in supporting incredible hearing naturally.A unique team of health and industry professionals dedicated to unlocking the secrets of happier living through a healthier body. https://zencortex-try.com/
– Shoot MASSIVE Loads For An Amazing Finish! https://semenax-try.com/
Sugar Defender is a natural supplement that helps control blood sugar levels, lower the risk of diabetes, improve heart health, and boost energy. https://sugardefender-web.com/
Nagano Lean Body Tonic is a groundbreaking powdered supplement crafted to support your weight loss journey effortlessly. https://naganotonic-try.com/
KeraBiotics is a meticulously-crafted natural formula designed to help people dealing with nail fungus. This solution, inspired by a sacred Amazonian barefoot tribe ritual https://kerabiotics-web.com/
Testosil is a natural polyherbal testosterone booster designed to help men increase their testosterone levels safely and effectively. https://testosil-web.com/
Easier WWW is a leading technology site that is dedicated to produce great how-to, tips and tricks and cool software review. https://easierwww.com/
Find the latest technology news and expert tech product reviews. Learn about the latest gadgets and consumer tech products for entertainment, gaming, lifestyle and more. https://axget.com/
WeJiJ is here to help get you the best gaming setup, gaming PC and guide you through the games you like to play with news, reviews and guides. https://wejij.com/
SightCare formula aims to maintain 20/20 vision without the need for any surgical process. This supplement is a perfect solution for people facing issues as they grow older. https://sightcare-web.com/
Fantastic beat I would like to apprentice while you amend your web site how could i subscribe for a blog site The account helped me a acceptable deal I had been a little bit acquainted of this your broadcast offered bright clear concept
เว็บไซต์ สม คร สมาช ก ใหม fun88 เป็นที่รู้จักในวงกว้างเนื่องจากความน่าเชื่อถือและความปลอดภัยของการให้บริการ คุณสามารถแทงบอลออนไลน์กับ Fun88 ได้อย่างง่ายดาย มีทั้งการแทงพนันกีฬาในลีกชั้นนำทั่วโลก เช่น ฟุตบอล, บาสเกตบอล, และเทนนิส คุณสามารถเลือกแทงในรูปแบบต่างๆ รวมถึงการแทงสดที่มีความเร็วและความตื่นเต้น
ラブドール 正規の本物のwmdollを販売する販売者は数社ありますが、そのほとんどは偽物であるため、リスクは非常に高くなります。これらの偽のwmdollは、合法的な企業から盗まれたデザインを使用して作成でき、品質管理や安全対策が講じられていない無認可の工場で製造されています。
ไม่ว่าคุณจะเป็นนักพนันมือใหม่หรือมือเก๋า คุณจะพบความสนุกและความตื่นเต้นที่ไม่มีวันจบกับการเล่นคาสิโนออนไลน์ที่ แทงหวย fun88 . อย่ารอช้า มาสัมผัสความสนุกที่ Fun88asia.cc กันเถอะ!
White Regal offers the best cleaning services in Manchester. Our professional cleaners provide deep home, Airbnb, carpet, gutter, gym and commercial cleaning at affordable rates.
fun88 ทางเข าเด ทท อป นับว่าเป็นสถานที่ที่เหมาะสำหรับผู้ที่หลงใหลในการเดิมพันกีฬา คุณสามารถเลือกแทงบอลหรือกีฬาอื่นๆ ได้ตามความชื่นชอบ นอกจากนี้ ยังมีเกมคาสิโนสดที่น่าตื่นเต้นรอคุณอยู่ เช่น บาคาร่า รูเล็ต และเกมสล็อตที่น่าตื่นเต้.นมากมาย
I’ve been visiting this site for years, and it never fails to impress me with its fresh perspectives and wealth of knowledge. The attention to detail and commitment to quality is evident. This is a true asset for anyone seeking to learn and grow.
Fantastic beat I would like to apprentice while you amend your web site how could i subscribe for a blog site The account helped me a acceptable deal I had been a little bit acquainted of this your broadcast offered bright clear concept