-
Notifications
You must be signed in to change notification settings - Fork 11
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
Deleted all the instances with "__fs" in file "LeoIpv4NetworkConfigurator.cc" #18
base: experiments
Are you sure you want to change the base?
Conversation
…generation of any constellation type rather than just starlink
…allows the user to specify the acceptable elevation angle of a connection rather than assuming the angle from SpaceX filings. Default is set to 25 degrees - equal to Starlinks elevation angle defined in the FCC filings
…oved the SatelliteMobility models to allow the input of elevation angles.
…nfigurator) which bypasses routing tables, hugely speeding up simulation time). Example simulation will be uploaded soon
…e much faster in comparison to the old implementation. Old simulation examples will be updated shortly
Hello LQ, I want to konw how to change compiler to gcc, |
In the root file of omnetpp, you can find a configure option in the config file, change it to gcc |
Thank you for your answer,When I ran the project, all the c++ files were compiled, but there was an error at the end like this:
Error: Cannot load library '../../src//libleosatellites-master.so': ../../src//libleosatellites-master.so: undefined symbol: igraph_vector_init
Do you know the cause of this error?
------------------ 原始邮件 ------------------
发件人: "Avian688/leosatellites" ***@***.***>;
发送时间: 2023年5月26日(星期五) 下午4:31
***@***.***>;
***@***.******@***.***>;
主题: Re: [Avian688/leosatellites] Deleted all the instances with "__fs" in file "LeoIpv4NetworkConfigurator.cc" (PR #18)
In the root file of omnetpp, you can find a configure option in the config file, change it to gcc
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Most likely, you didn't install the igraph package well. Remember to clone the dev branch instead of master branch. |
How can I change the default compiler to gcc instead of clang in the configure.user file? I set "PREFER_CLANG=no", but it didn't work, did I miss anything? |
after changing it, you need to re-configure and remake the omnet++ with command ./configure and make |
I tried to compile this project but failed with Error: no member named '__fs' in namespace "std".
So I change my compiler to gcc and delete all the instances with "__fs", to use the member std::filesystem in c++17, then it works.