Closed Sunnyone1234 closed 5 years ago
Note: I updated your initial comment to make it more readable. In Markdown, the syntax to highlight outputs is to use put triple back quotes around them not ---------
(this is for titles).
Concerning your problem, it works for me with latest master.
What version of RIOT you using ? (you can paste the output of git log -1
)
Note: I updated your initial comment to make it more readable. In Markdown, the syntax to highlight outputs is to use put triple back quotes around them not
---------
(this is for titles).Concerning your problem, it works for me with latest master.
What version of RIOT you using ? (you can paste the output of
git log -1
)
Thanks i have used
commit 1d95da01fa9b37837b99a6e450c093a84a59f0e9 (HEAD -> master)
Merge: ce5cd0591 672368954
Author: Kevin "Bear Puncher" Weiss <weiss.kevin604@gmail.com>
Date: Fri Nov 2 15:31:26 2018 +0100
Merge pull request #9211 from Josar/pr/xtimer_target_overflow
xtimer: timer & target overflow, hang resolved.
Works for me with gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907]
as well as in Docker. When building for native, netdev_ieee802154
should not be a dependency and thus, periph_spi
and periph_gpio*
shouldn't. However, your build seems to incorporate these modules.
Works for me with
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907]
as well as in Docker. When building for native,netdev_ieee802154
should not be a dependency and thus,periph_spi
andperiph_gpio*
shouldn't. However, your build seems to incorporate these modules.* You sure there are no unstaged changes in your local repository? * Could you try in a new terminal to avoid any accidental environmental parameters?
Thanks Peter, i konw why. I habe added USEMODULE += at86rf233 in Makefile under gnrc_networking. So i can not make it without my board. so stupid. Thanks a lot~
Works for me with
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907]
as well as in Docker. When building for native,netdev_ieee802154
should not be a dependency and thus,periph_spi
andperiph_gpio*
shouldn't. However, your build seems to incorporate these modules.* You sure there are no unstaged changes in your local repository? * Could you try in a new terminal to avoid any accidental environmental parameters?
Thanks Peter, i konw why. I habe added USEMODULE += at86rf233 in Makefile under gnrc_networking. So i can not make it without my board. so stupid. Thanks a lot~
So should i close this issue or it will be closed by others. Actually i'm very fresh here by git...
@Sunnyone1234 no worries :-). And I'm closing the issue for you know.
Description
Example: Cannot build gnrc_networking application for native.
Steps to reproduce the issue
Before i can complie gnrc_networking very easy by type "make". But today when i do it again there are some error messages like:
Then I try to solve this error and have added
in Makefile. The error message still here but without the feature requirements
I have never changed the code in /drivers/periph_common/init.c and spi.h, i mean everythings under /periph_common/ are the same as in master. So i really dont know what's wrong with it. If someone has the same issue and has already solved. Please tell me, it helps me a lot. Thanks:)
Expected results
Please help me to solve this problem. Thanks a lot.
Actual results
I have added USEMODULE += at85rf233 in Makefile under gnrc_networking and therefore i can not make it for native. When i comment this line then i can compile just by type "make".
Versions
Thanks again