Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error while processing: __float128 is not supported on this target #2617

Closed
Losdanmartin opened this issue May 19, 2024 · 1 comment
Closed
Assignees

Comments

@Losdanmartin
Copy link

Hi I just wrote a code and bumped into this problem. I've never seen a bug like this before please help me, im a beginner

#include
#include
#include "Network.h"
#include "Host.h"

int main(){

Network network;

Router *router1 = new Router("192.168.0.1");
Router *router2 = new Router("192.168.1.1");
Router *router3 = new Router("192.168.2.1");

Host *host1 = new Host ("192.168.0.100");
Host *host2 = new Host ("192.168.0.101");
Host *host3 = new Host ("192.168.0.102");

router1->addDevice (host1);
router2->addDevice (host2);
router3->addDevice (host3);

network.addRouter(router1);
network.addRouter(router2);
network.addRouter(router3);

network.addHost(host1);
network.addHost(host2);
network.addHost(host3);

host1->sendPacket("Hi Host!", "192.168.0.102");

}

@ewertons ewertons self-assigned this May 22, 2024
@ewertons
Copy link
Contributor

Hi @Losdanmartin ,
thank you for your question, but it unfortunately is not related to the product hosted by this repo.
We do understand your situation as we've all been there before, so as a recommendation please try posting your question on a more general forum like StackOverflow. You will need to be more specific though, including which host are you compiling for and which compiler you are using.

Good luck!
Azure IoT SDKs Team.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants