Problem with /solutions/genie pipeline

What happens

I was triying to upload my MR but the pipeline failed in step of solutions/genie (https://gitlab.com/autonomicjump/challenges/-/jobs/3199360882) with next error :

85bicqscvns6lc9b532zmqsss4aln28d-dth113.vala.c:(.text+0xb16): undefined reference to `pow'
collect2: error: ld returned 1 exit status
error: cc exited with status 256
Compilation failed: 1 error(s), 0 warning(s)
[CRITICAL] Unsuccessful compilation

Did you try any workaround? What did you do?I

I solved the compiler error in my local enviroment following the steps in this github issue `Menu' is an ambiguous reference between `GLib.Menu' and `Gtk.Menu' · Issue #1 · YggdrasiI/NeoLayoutViewer · GitHub, Genie is like a superset of Vala language which use valac to compile, this compiler is based in C compiler so if you want to use the Math Library (GLib.Math – glib-2.0) you need to put parameters in the compiler options. For a succesful compilation you need to use the --Xcc=“-lm” option in the valac compiler i.e:
valac --Xcc=“-lm” dth113.gs

Evidences

Using valac without options:

Using valac with -lm option:

I need help with

What can i do in this case? Or is just problem of the options of pipeline

Hello,

I was able to fix the bug correctly, if you have more bugs feel free to reply to this thread.

Regards,