How can I solve `Not using an unsupported version of ...` warnings?

bwywb00
Posts: 3
Joined: Wed Feb 19, 2020 12:31 pm

How can I solve `Not using an unsupported version of ...` warnings?

Postby bwywb00 » Fri Mar 06, 2020 12:30 pm

Hello, I need your help for solving `Not using an unsupported version of..` warning!!

I'm using eclipse with ubuntu 16.04.

I followed the 'esp-idf' official document in setting up the environment variables. And I copy and paste below code into '~/.profile'.

Code: Select all

. $HOME/esp/esp-idf/export.sh
When I start ubuntu, the warning message in the screenshot always coming along.
I think that's not the critical issue in programming, but I don't want to see that warning by solving a problem.

I tried to find the problem, but I can't find any '3.5.1' or '1.5.1' words in '~/esp/esp-idf/tools/'.
Do you guys know how to handle that problem!?

I appreciate your help:D
Thanks!
Attachments
Screen Shot 2020-03-05 at 6.27.26 PM.png
Screen Shot 2020-03-05 at 6.27.26 PM.png (2.68 MiB) Viewed 7264 times

chegewara
Posts: 2333
Joined: Wed Jun 14, 2017 9:00 pm

Re: How can I solve `Not using an unsupported version of ...` warnings?

Postby chegewara » Fri Mar 06, 2020 5:10 pm

Try:

Code: Select all

$ cmake --version
$ ninja --version
$ python -V
You can check only cmake version, but you will need ninja and python eventually.

ESP_igrr
Posts: 2071
Joined: Tue Dec 01, 2015 8:37 am

Re: How can I solve `Not using an unsupported version of ...` warnings?

Postby ESP_igrr » Fri Mar 06, 2020 7:40 pm

I would not suggest placing "export.sh" into your .profile script. The better option is to add an alias as explained here:

https://esp32.com/viewtopic.php?f=13&t= ... 391#p56391

bwywb00
Posts: 3
Joined: Wed Feb 19, 2020 12:31 pm

Re: How can I solve `Not using an unsupported version of ...` warnings?

Postby bwywb00 » Sun Mar 08, 2020 12:25 pm

ESP_igrr wrote:
Fri Mar 06, 2020 7:40 pm
I would not suggest placing "export.sh" into your .profile script. The better option is to add an alias as explained here:

https://esp32.com/viewtopic.php?f=13&t= ... 391#p56391
Thanks ESP_igrr :D

Code: Select all

alias get_idf='. $Home/esp/esp-idf/export.sh'
Need one space between . and $Home

Works for me!
I appreciate you!

scottymus
Posts: 1
Joined: Thu Sep 17, 2020 4:01 pm

Re: How can I solve `Not using an unsupported version of ...` warnings?

Postby scottymus » Thu Sep 17, 2020 4:09 pm

This is my solution:

Code: Select all

source $HOME/esp/esp-idf/export.sh > /dev/null 2>%1
This line essentially discards the output from the export.sh script. Just put this in your .profile script (not your .bashrc) This will setup everything just once when you first login.

Scott

Who is online

Users browsing this forum: jesper and 105 guests