terragear | Mirror : TerraGear - scenery generation tools
kandi X-RAY | terragear Summary
kandi X-RAY | terragear Summary
TerraGear is a collection of tools for building scenery for the FlightGear project. Generally, the process is done in two steps:. There is currently no graphical front end for these tools so you will need to run them from the command line. Be prepaired, when building scenery on a world wide scale, be prepaired to burn through multiple gigabytes of disk space and days or weeks of crunching. Building smaller chunks is much more doable though.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of terragear
terragear Key Features
terragear Examples and Code Snippets
Community Discussions
Trending Discussions on terragear
QUESTION
I am trying to build TerraGear with self-made AutoTools files (configure
script). TerraGear is split into several subprojects. For each, I create a different set of configure.ac
and Makefile.am
files, but they are all almost the same.
Consider the following two files:
configure.ac
...ANSWER
Answered 2021-Jul-18 at 01:20Not all shell variables defined in configure
are forwarded to output files. Generally speaking, you need to use AC_SUBST()
to tell Autoconf that a shell variable should be an output variable:
QUESTION
I am trying to build TerraGear from the FlightGear project. I got no errors while compiling but while linking I'm getting undefined reference to multiple functions all starting with dns_
and none of them is present in /usr/lib/x86_64-linux-gnu/libdns.so.1100
. In which library are these defined ? Because, I googled for dns_init
(that's one of these functions) and found no documentation.
ANSWER
Answered 2021-Jun-01 at 20:44Okay, I should do more research before asking here ;) : these functions come from libudns, and I just forgot to link it ! :@
QUESTION
I am trying to build TerraGear from the FlightGear project, and it needs multiple symbols from a static library libSimGearBucket
upon linking, for example SGBucket::gen_base_path
. ld
fails with
ANSWER
Answered 2021-May-30 at 00:09The function you need is SGBucket::gen_base_path[abi:cxx11]() const
.
The function you have is SGBucket::gen_base_path() const
. These aren't the same symbol.
You can use -Wl,--no-demangle
at link time to tell the linker to print mangled (real) symbol that ends up undefined, and that would make it clearer that you don't in fact have a definition of that symbol.
Possibly the libSimGearCore.a
library was compiled without -std=c++11
flag, while the code which needs the symbol was compiled with it.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install terragear
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page