You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Undefined symbols for architecture x86_64:
"toExprString(char const*)", referenced from:
bool Sim::get<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, char [6]>(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, char const (&) [6], SimSignal const&) in ccBhzTjU.o
"Endl(SimIO&)", referenced from:
SimControl<Kernel>::simulate(int, char**) in ccBhzTjU.o
"ExprParser::parse_file(char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&)", referenced from:
SimControl<Kernel>::simulate(int, char**) in ccBhzTjU.o
..... two more pages of complains
std::basic_string<char, std::char_traits<char>, std::allocator<char> > ExprToValueErrorDescription<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >(ExpressionPtr const&) in ccBhzTjU.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
make: *** [tutorial_sim_iterated] Error 1
Do you know what I am doing wrong? If i remember right, that this is also the problem when i am running the te_causality_master from olavolav. Did i forget to add some paths?
Bye the way the ./test inputworks like a charm
Thanks again for all your help.
Dirk
The text was updated successfully, but these errors were encountered:
Hi,
Ask as much as you want, it's the only way to fix these isssues!
I see where the issue is, the OBJBASE variable is undefined. Lines 103 and 104 from the Makefile should read:
And the include from tutorial/hello_world_sim_iterated.cpp should read: #include "../include/sim_main.h"
BUT, since you have installed simkernel as a library, you have another option, you can keep your include as #include <sim_main.h> and instead change lines 103 and 104 of the Makefile to:
Hello again,
I hope I am annoying you not to much, with all the questions. I tried to run one of the tutorial skips by using
the first error I received was that he could not include "../sim_main.h". Therefore I changed the hello_world_sim_iterated.cpp line 2
and include the following paths into ~/.profile
Now I run into the following:
Do you know what I am doing wrong? If i remember right, that this is also the problem when i am running the te_causality_master from olavolav. Did i forget to add some paths?
Bye the way the
./test input
works like a charmThanks again for all your help.
Dirk
The text was updated successfully, but these errors were encountered: