News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Bugs about script settings in compiler search path

Started by Chun Jiu, May 27, 2020, 05:19:14 AM

Previous topic - Next topic

Chun Jiu

Hi, guys.

I found a bug about script settings, it is in the compiler settings, please see the picture below.

My intention is to need a hook to start the compiler to temporarily set the options that need to be changed in the project.

Then I thought of adding a script function to the compiler search path to start my hook.

But after each exit of C :: B, the next time C :: B is opened, the script becomes two incomplete lines, so it becomes an error.



I love my girlfriend like c++!    :-)

[url="http://pan.baidu.com/s/1feNwU"]http://pan.baidu.com/s/1feNwU[/url]
easilygcc is a gmail's email.

Chun Jiu

Okay !

I found the cause of the problem. You cannot add ";" after a single function in square brackets, it will truncate this script string.

Wrong writing: [[ print("."); ]]
-----------------------------^

Correct wording: [[ print(".") ]]
I love my girlfriend like c++!    :-)

[url="http://pan.baidu.com/s/1feNwU"]http://pan.baidu.com/s/1feNwU[/url]
easilygcc is a gmail's email.