This semester I got this new subject where we get to work with Discovery STM32 F4, and we are still in the phase of setting it up. But I have this problem in the beginning.
When I try to compile this «blink» code I get this error:
So, as I got it so far, we are using this shortcut command «make» to compile code, and we were given instruction to set it up as it’s shown in images below:
Can anyone see what’s the problem here?
Paolo
18k6 gold badges33 silver badges62 bronze badges
asked Apr 1, 2016 at 20:59
4
Error 127
means one of two things:
- file not found: the path you’re using is incorrect. double check that the program is actually in your
$PATH
, or in this case, the relative path is correct — remember that the current working directory for a random terminal might not be the same for the IDE you’re using. it might be better to just use an absolute path instead. - ldso is not found: you’re using a pre-compiled binary and it wants an interpreter that isn’t on your system. maybe you’re using an x86_64 (64-bit) distro, but the prebuilt is for x86 (32-bit). you can determine whether this is the answer by opening a terminal and attempting to execute it directly. or by running
file -L
on/bin/sh
(to get your default/native format) and on the compiler itself (to see what format it is).
if the problem is (2), then you can solve it in a few diff ways:
- get a better binary. talk to the vendor that gave you the toolchain and ask them for one that doesn’t suck.
- see if your distro can install the multilib set of files. most x86_64 64-bit distros allow you to install x86 32-bit libraries in parallel.
- build your own cross-compiler using something like crosstool-ng.
- you could switch between an x86_64 & x86 install, but that seems a bit drastic ;).
answered Apr 2, 2016 at 1:02
Mike FrysingerMike Frysinger
2,6901 gold badge21 silver badges24 bronze badges
2
я загрузил Волнистого попугайчика Ubuntu на свой компьютер, и мой адаптер Wi-Fi USB не работал так, я загрузил драйвер на свой телефон и передал его моему компьютеру. После того как это произошло, я пытался выполнить install.sh файл, но я продолжаю получать эту ошибку:
Authentication requested [root] for make clean:
bash: make: command not found
Authentication requested [root] for make driver:
bash: make: command not found
####################################
Compile make driver error: 127
Please check error Mesg
####################################
Я пытался выполнить его обычно с sudo, и с верным, но это продолжает давать мне ошибки. Я действительно понимаю, что существуют другие сообщения, подобные этому, но я не понимаю, как заставить те определенные решения работать с моим.
Править: Я не знаю то, что я должен сделать точно. У меня есть свой включенный адаптер Wi-Fi usb, но мой компьютер не регистрирует его так, я сделаю оба кода. Для lspci -nnk | grep 0280
ничего не произошло и для lsusb
Я добрался:
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 003: ID 0c45:5104 Microdia Bus 003 Device 004: ID 0bda:a811 Realtek Semiconductor Corp. Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 145f:01c1 Trust Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Я не знаю, помогает ли это любому, но драйверу Linux, который я, как предполагается, устанавливаю, назван Wsky-AC600-LINUX-Driver, который расположен в моем каталоге Downloads.
задан
16 March 2018 в 01:49
поделиться
1 ответ
На некотором другом компьютере перейдите к этому сайту: https://packages.ubuntu.com/Выбор Ваша версия Ubuntu; проверьте от терминала:
lsb_release -d
И Ваша архитектура; или 32-или 64-разрядный:
arch
Ищите существенный для сборки пакет. Загрузите его и все его зависимости. Зависимости обозначаются красной точкой; в этом случае, dpkg-dev, g ++, gcc, libc6-dev и делают. Загрузите эти пакеты, также. Передайте .deb файлы рабочему столу машины Ubuntu. Затем от терминала:
cd ~/Desktop
sudo dpkg -i *.deb
Это может жаловаться, что пакет пропускает зависимость. Если так, загрузите это и добавьте его к рабочему столу и попробуйте еще раз.
Править: Если с другой стороны, у Вас есть доступное соединение Ethernet, можно вполне просто сделать:
sudo apt-get update
sudo apt-get install build-essential
Все необходимые зависимости и их зависимости, будут автоматически установлены.
Сноска: мы хотели бы подтвердить детали Вашей беспроводной связи USB, поскольку может быть лучший путь, чем этот долгий процесс. Отредактируйте свой вопрос добавить результат:
lsusb
EDIT2: Ваше беспроводное устройство — это: 0bda:a811 Realtek Semiconductor Corp.
С временным рабочим интернет-соединением Ethernet, ограниченным или безотносительно возможных средств, откройте терминал и сделайте:
sudo apt-get update
sudo apt-get install --reinstall build-essential git
git clone https://github.com/gnab/rtl8812au.git
sudo dkms add ./rtl8812au
sudo dkms build -m 8812au/4.2.2
sudo dkms install -m 8812au/4.2.2
Перезагрузка и Ваша беспроводная связь должны работать.
ответ дан chili555
7 December 2019 в 15:22
поделиться
Другие вопросы по тегам:
Похожие вопросы:
- Forum
- The Ubuntu Forum Community
- Ubuntu Official Flavours Support
- Networking & Wireless
- [all variants] Help with driver compile (Make Error 127)
-
Help with driver compile (Make Error 127)
I am trying to compile a driver using the instructions listed below. When i get to step 4, i get an Make: error 127.
Any idea on what im doing wrong?Code:
Build Instructions: ==================== 1> $tar -xvzf RT73_Linux_STA_Drv_x.x.x.x.tar.gz go to "./RT73_Linux_STA_Drv_x.x.x.x/Module" directory. 2> $cp Makefile.4 ./Makefile # [kernel 2.4] or $cp Makefile.6 ./Makefile # [kernel 2.6] 3> [kernel 2.4] $chmod 755 Configure $make config # config build linux os version 4> $make all # compile driver source code 5> $cp rt73.bin /etc/Wireless/RT73STA/ # copy firmware 6> $dos2unix rt73sta.dat $cp rt73sta.dat /etc/Wireless/RT73STA/rt73sta.dat # !!!check if it is a binary file before loading !!! 7> $load #[kernel 2.4] # $/sbin/insmod rt73.o # $/sbin/ifconfig rausb0 inet YOUR_IP up #[kernel 2.6] # $/sbin/insmod rt73.ko # $/sbin/ifconfig rausb0 inet YOUR_IP up
-
Re: Help with driver compile (Make Error 127)
I guess the most logical question right about now is do you have «build-essential» installed?
-
Re: Help with driver compile (Make Error 127)
Is there a reason why the RT73 module included with the kernel doesn’t work?
Bookmarks
Bookmarks
Posting Permissions
I am trying to install shc on Ubuntu 18.04
wget http://www.datsi.fi.upm.es/~frosal/sources/shc-3.8.9b.tgz
tar xvfz shc-3.8.9.tgz
cd shc-3.8.9
make
But receive the following error:
cc -Wall shc.c -o shc
make: cc: Command not found
makefile:31: recipe for target 'shc' failed
make: *** [shc] Error 127
The makefile:
# Makefile
#
INSTALL_PATH = /usr/local
# For SCO
CFLAGS = -b elf -O -D_SVID
# For IRIX
CFLAGS = -xansi -fullwarn -O3 -g0
# For Solaris
CFLAGS = -fast -xO4 -s -v -Xa
# For HPUX
CFLAGS = -Wall -O -Ae
# For OSF1
CFLAGS = -w -verbose -fast -std1 -g0
# For GNU C compiler
CFLAGS = -Wall # -O6 -pedantic
#SHELL = /bin/sh
SHCFLAGS = -v -T # Add -T option to allow binary to be traceable
all: shc ask_for_test
shc: shc.c
$(CC) $(CFLAGS) $@.c -o $@
ask_for_test:
@echo '*** �Do you want to probe shc with a test script?'
@echo '*** Please try... make test'
test: make_the_test ask_for_strings
make_the_test: match.x
@echo '*** Running a compiled test script!'
@echo '*** It must show files with substring "sh" in your PATH...'
./match.x sh
match.x: shc match
@echo '*** Compiling script "match"'
CFLAGS="$(CFLAGS)" ./shc $(SHCFLAGS) -f match
ask_for_strings:
@echo '*** �Do you want to see strings in the generated binary?'
@echo '*** Please try... make strings'
strings: make_the_strings ask_for_expiration
make_the_strings: match.x
@echo '*** Running: "strings -n 5 'match.x'"'
@echo '*** It must show no sensible information...'
strings -n 5 match.x
ask_for_expiration:
@echo '*** �Do you want to probe expiration date?'
@echo '*** Please try... make expiration'
expiration: til_yesterday ask_for_install
til_yesterday: shc match
@echo '*** Compiling "match" to expired date'
CFLAGS="$(CFLAGS)" ./shc $(SHCFLAGS) -vv -e `date "+%d/%m/%Y"` -f match
@echo '*** Running a compiled test script!'
@echo '*** It must fail showing "./match.x: has expired!"'
./match.x
ask_for_install:
@echo '*** �Do you want to install shc?'
@echo '*** Please try... make install'
install: shc
@echo '*** Installing shc and shc.1 on '$(INSTALL_PATH)
@echo -n '*** �Do you want to continue? '; read ANS; case "$$ANS" in y|Y|yes|Yes|YES) ;; *) exit 1;; esac;
install -c -s shc $(INSTALL_PATH)/bin/
install -c -m 644 shc.1 $(INSTALL_PATH)/man/man1/
clean:
rm -f *.o *~ *.x.c
cleanall: clean
rm -f shc *.x
I have no idea how to fix this error. Can anyone help?
mature
3,7199 gold badges29 silver badges64 bronze badges
asked Nov 22, 2018 at 17:24
2
cc is an alias for the GNU C compiler (gcc). You can install it as follows:
sudo apt install gcc
If, for some reason, the gcc compiler is already installed, but the symbolic link /usr/bin/cc
is missing, you can also do:
make CC=gcc
answered Nov 22, 2018 at 18:07
1
sudo apt install build-essential
This will install a C compiler (providing the cc
command) as well as other tools that you may need for building software from source.
answered Nov 22, 2018 at 19:39
MarkMark
5724 silver badges13 bronze badges
My Realtek 802.11n WiFi card isn’t being claimed by the drivers from here. I installed led the drivers using the install.sh
script given in the decompressed tar.gz
. UbuntuMATE is running on a Raspberry Pi 2.
*-usb:4 UNCLAIMED
description: Generic USB device
product: 802.11n NIC
vendor: Realtek
physical id: 5
bus info: usb@1:1.5
version: 2.00
serial: 00e04c000001
capabilities: usb-2.10
configuration: maxpower=500mA speed=480Mbit/s
Above is the result of sudo lshw
in terminal, which shows the unclaimed USB device, the WiFi card.
harrycburn@RPi:~$ sudo iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
harrycburn@RPi:~$ sudo ifconfig
eth0 Link encap:Ethernet HWaddr b8:27:eb:3a:b4:5a
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:542 errors:0 dropped:0 overruns:0 frame:0
TX packets:542 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:45957 (45.9 KB) TX bytes:45957 (45.9 KB)
Running lsusb
:
harrycburn@RPi:~$ lsusb
Bus 001 Device 012: ID 0bda:818b Realtek Semiconductor Corp.
Bus 001 Device 013: ID 0781:5567 SanDisk Corp. Cruzer Blade
Bus 001 Device 007: ID 1c4f:0002 SiGma Micro Keyboard TRACER Gamma Ivory
Bus 001 Device 004: ID 1bcf:0005 Sunplus Innovation Technology Inc.
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Running lspci
(I’m not even sure if this is relevant) gives:
pcilib: Cannot open /proc/bus/pci
lspci: Cannot find any working access method
Running install.sh
gives the error:
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/wpa1.conf: time stamp 2012-04-05 03:42:09 is 1333588869.902553677 s in the future
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/wpa1.conf: Cannot change ownership to uid 400, gid 401: Operation not permitted
rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/
rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/rtl8712_xmit.c
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/rtl8712_xmit.c: time stamp 2012-04-05 03:42:13 is 1333588873.89712326 s in the future
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/rtl8712_xmit.c: Cannot change ownership to uid 400, gid 401: Operation not permitted
rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/rtl871x_xmit.c
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/rtl871x_xmit.c: time stamp 2012-04-05 03:42:13 is 1333588873.891775552 s in the future
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit/rtl871x_xmit.c: Cannot change ownership to uid 400, gid 401: Operation not permitted
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit: time stamp 2012-04-05 03:42:13 is 1333588873.890704718 s in the future
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405/xmit: Cannot change ownership to uid 400, gid 401: Operation not permitted
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405: time stamp 2012-04-05 03:42:18 is 1333588878.889988364 s in the future
tar: rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405: Cannot change ownership to uid 400, gid 401: Operation not permitted
tar: Exiting with failure status due to previous errors
rtl8712_8188_8191_8192SU_usb_linux_v2.6.6.0.20120405
Authentication requested [root] for make clean:
bash: make: command not found
Authentication requested [root] for make driver:
bash: make: command not found
##################################################
Compile make driver error: 127
Please check error Mesg
##################################################
As I’m new to Linux in general, I have no idea as to where to go from here, so I’d appreciate any help. If you need any more information, just ask and I’ll post it.
- Форум русскоязычного сообщества Ubuntu »
- Поддержка »
- Настройка системы (Модераторы: Дмитрий Бо, www777) »
- make Error 127
- Печать
Страницы: [1] Вниз
Тема: make Error 127 (Прочитано 6821 раз)
0 Пользователей и 1 Гость просматривают эту тему.
w2e
Ubuntu 12.04
трей
—————————————————————————
000@1000:~/dd/dir320$ make kernel_menuconfig
что делать? кто нить знает?
make[1]: Entering directory `/home/000/dd/dir320/target/linux'
make[2]: Entering directory `/home/000/dd/dir320/target/linux/brcm47xx'
if [ -s "/home/000/dd/dir320/build_dir/linux-brcm47xx/linux-2.6.32.27/patches/series" ]; then (cd "/home/000/dd/dir320/build_dir/linux-brcm47xx/linux-2.6.32.27"; if quilt --quiltrc=- next >/dev/null 2>&1; then quilt --quiltrc=- push -a; else quilt --quiltrc=- top >/dev/null 2>&1; fi ); fi
make[2]: *** [/home/000/dd/dir320/build_dir/linux-brcm47xx/linux-2.6.32.27/.quilt_checked] Error 127
make[2]: Leaving directory `/home/000/dd/dir320/target/linux/brcm47xx'
make[1]: *** [menuconfig] Error 2
make[1]: Leaving directory `/home/000/dd/dir320/target/linux'
make: *** [kernel_menuconfig] Ошибка 2
Пользователь решил продолжить мысль 30 Июня 2012, 16:59:41:
проблема решена не хватала пакета quilt.
« Последнее редактирование: 30 Июня 2012, 16:59:41 от w2e »
victor00000
- Печать
Страницы: [1] Вверх
- Форум русскоязычного сообщества Ubuntu »
- Поддержка »
- Настройка системы (Модераторы: Дмитрий Бо, www777) »
- make Error 127
SMF 2.0.19 |
SMF © 2011, Simple Machines | Карта форума
Страница сгенерирована за 0.034 секунд. Запросов: 25.
Содержание
- Avr Studio Make Error 127
- Studio 7 & WIN 10 Buils fail on make error 127 AVR Freaks
- gcc — Make Error 127 when running trying to compile code .
- Error 127? — problem compiling model · Issue #160 .
- How do you fix a gcc compile 127 error? sudo apt-get .
- Can’t compile. make.exe error. — Code::Blocks
- Microchip Studio for AVR® and SAM Devices Microchip .
- cstdio ‘::printf’ has not been declared AVR Freaks
- [Moved] MY first progarm on AVR doesn’t work Forum for .
- [AVR Studio] AVR Studio 첫 사용 에러(Error 127) : 네이버 블로그
- Avr Studio Make Error 127 Fixes & Solutions
- [gccversion] Error 127 #4120
- Comments
- Avr studio error 127
- Кто сейчас на форуме
Avr Studio Make Error 127
We have collected for you the most relevant information on Avr Studio Make Error 127, as well as possible solutions to this problem. Take a look at the links provided and find the solution that works. Other people have encountered Avr Studio Make Error 127 before you, so use the ready-made solutions.
Studio 7 & WIN 10 Buils fail on make error 127 AVR Freaks
- https://www.avrfreaks.net/forum/studio-7-win-10-buils-fail-make-error-127
- Mar 02, 2014 · Yes, the build of the new project with the make error 127 provide only two file in the debug folder see MakeFileFromEssai.zip MakefileFromEssai.zip and legacyprojectWithouterror.zip was two build with the same files. without error an legacy project from 6.2 with any upgrade build with studio …
gcc — Make Error 127 when running trying to compile code .
- https://stackoverflow.com/questions/36365752/make-error-127-when-running-trying-to-compile-code
- When I try to compile this «blink» code I get this error: So, as I got it so far, we are using this shortcut command «make» to compile code, and we were given instruction to set …
Error 127? — problem compiling model · Issue #160 .
- https://github.com/metrumresearchgroup/mrgsolve/issues/160
- Nov 05, 2016 · Note there are two directories that you need at the front of the path. And obviously enter paths that are appropriate for your Rtools install. You can put this in a file called .Rprofile in your Sys.getenv(«HOME») directory and it will automatically configure your R environment variable without touching your Windows system environment variables. I would prefer doing all of this through an .
How do you fix a gcc compile 127 error? sudo apt-get .
- https://askubuntu.com/questions/448691/how-do-you-fix-a-gcc-compile-127-error-sudo-apt-get-install-g-doesnt-work
- Stack Exchange Network. Stack Exchange network consists of 176 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.. Visit Stack Exchange
Can’t compile. make.exe error. — Code::Blocks
- http://forums.codeblocks.org/index.php?topic=21803.0
- Mar 12, 2017 · make.exe: Makefile: No such file or directory make.exe: *** No rule to make target `Makefile’. Stop. The ToolChain exe. is pointing to the make.exe file . I can run AVR Studio fine so the compiler must be fine. I have tried manually to set the directories etc but still no joy.
Microchip Studio for AVR® and SAM Devices Microchip .
- https://www.microchip.com/en-us/development-tools-tools-and-software/microchip-studio-for-avr-and-sam-devices
- Microchip Studio is an Integrated Development Platform (IDP) for developing and debugging AVR ® and SAM microcontroller applications. It merges all of the great features and functionality of Atmel Studio into Microchip’s well-supported portfolio of development tools to give you a seamless and easy-to-use environment for writing, building and debugging your applications written in C/C++ or .
cstdio ‘::printf’ has not been declared AVR Freaks
- https://community.atmel.com/forum/cstdio-printf-has-not-been-declared
- Hi, I’ve recently updated atmel studio and the compiler changed from 5.3.1 to 6.2.1 This change makes my project un-compilable.
[Moved] MY first progarm on AVR doesn’t work Forum for .
- https://www.edaboard.com/threads/moved-my-first-progarm-on-avr-doesnt-work.259417/
- Jul 14, 2012 · The AVR GCC plug-in can still be used if you set up your own build tools. Loaded plugin AVR GCC Loaded partfile: C:Program FilesAtmelAVR ToolsPartDescriptionFilesATmega16.xml gcc plug-in: No AVR Toolchain installation found. The AVR GCC plug-in can still be used if you set up your own build tools. gcc plug-in: No AVR Toolchain installation .
[AVR Studio] AVR Studio 첫 사용 에러(Error 127) : 네이버 블로그
- http://blog.naver.com/PostView.nhn?blogId=wngud6111&logNo=220332183360&widgetTypeCall=true
- мќґлЉ” atmega128мќЂ 32비트가 м•„л‹ЊлЌ° л‚ґк°Ђ avr-gcc를 avr32-gccлЎњ м„¤м •н•ґм„њ л°њмѓќн•лЉ” м¤лҐмќґл‹¤. AVR32-GCCлЎњ ліЂкІЅ н•л‹€ Build succeeded with 0 Warnings. лќјлЉ” 메시지를 ліјм€ мћ€м—€л‹¤.
Avr Studio Make Error 127 Fixes & Solutions
We are confident that the above descriptions of Avr Studio Make Error 127 and how to fix it will be useful to you. If you have another solution to Avr Studio Make Error 127 or some notes on the existing ways to solve it, then please drop us an email.
Источник
[gccversion] Error 127 #4120
1, I run the script to use my fourier keybord.
2, However, I got the err.
- I refer to this reddit article which is same error as me.
I run the script which is written in the article.
/.bash_profile For compilers to find avr-gcc@7 you may need to set: export LDFLAGS=»-L/usr/local/opt/avr-gcc@7/lib» ==> Summary 🍺 /usr/local/Cellar/avr-gcc@7/7.3.0: 1,682 files, 175.3MB, built in 31 minutes ———————————————————————————— $ brew install crosspack-avr Updating Homebrew. ==> Auto-updated Homebrew! Updated 1 tap (homebrew/cask). No changes to formulae. Error: No available formula with the name «crosspack-avr» ==> Searching for a previously deleted formula (in the last month). Warning: homebrew/core is shallow clone. To get complete history run: git -C «$(brew —repo homebrew/core)» fetch —unshallow Error: No previously deleted formula found. ==> Searching for similarly named formulae. Error: No similarly named formulae found. ==> Searching taps. ==> Searching taps on GitHub. Error: No formulae found in taps. ———————————————————————————— $ brew update Already up-to-date. ———————————————————————————— $ brew upgrade»>
What should I do? Please help.
The text was updated successfully, but these errors were encountered:
Источник
Avr studio error 127
Что-то глючу с AVR studio 4.19 билд 730 и WinAVR 2009 2010
делаю мастером проект, выбираю симулятор и мегу16, запускаю «билд-ран» получаю сообщение что нет ELF
Build started 10.1.2014 at 02:19:39
mmcu=atmega16 -Wall -gdwarf-2 -Os -std=gnu99 -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -MD -MP -MT main.o -MF dep/main.o.d -c ../main.c
/bin/sh: -Wall: command not found
make: [main.o] Error 127 (ignored)
mmcu=atmega16 -Wl,-Map=_12.map main.o -o _12.elf
/bin/sh: -Wl,-Map=_12.map: command not found
make: [_12.elf] Error 127 (ignored)
avr-objcopy -O ihex -R .eeprom -R .fuse -R .lock -R .signature _12.elf _12.hex
avr-objcopy: ‘_12.elf’: No such file
make: *** [_12.hex] Error 1
Build failed with 1 errors and 0 warnings.
такая фигня и в WinAVR-20090306rc1 и в WinAVR-20100110
Ни когда такого не было. Посмотрите пожалуйста проектик.
Вложения: |
_12.zip [2.92 KiB] Скачиваний: 232 |
_________________
Будете проходить мимо- проходите! Вернуться наверх
Реклама |
Реклама |
|
radio-kot | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Карма: -22 |
|