05-03-2022, 09:48 AM
in the source code of qb64, there is this line (it concerns linux) :
ELSE
SHELL _HIDE GDB_Fix("g++ -c -s -w -Wall libqb.cpp -D FREEGLUT_STATIC " + defines$ + " -o libqb/os/" + o$ + "/libqb_" + depstr$ + ".o") + " 2>> ../../" + compilelog$
END IF
is that it is possible to configure qb64 to run :
g++ -Ofast -c -s -w -Wall libqb.cpp -D FREEGLUT_STATIC
otherwise I will have to recompile qb64. I forgot the first time to modify this line in :
internal/source/main.txt
the source code of qb64 is weird and not logical. normally this kind of command should be specified in a separate configuration file to be modifiable without having to recompile everything at each modification...
ELSE
SHELL _HIDE GDB_Fix("g++ -c -s -w -Wall libqb.cpp -D FREEGLUT_STATIC " + defines$ + " -o libqb/os/" + o$ + "/libqb_" + depstr$ + ".o") + " 2>> ../../" + compilelog$
END IF
is that it is possible to configure qb64 to run :
g++ -Ofast -c -s -w -Wall libqb.cpp -D FREEGLUT_STATIC
otherwise I will have to recompile qb64. I forgot the first time to modify this line in :
internal/source/main.txt
the source code of qb64 is weird and not logical. normally this kind of command should be specified in a separate configuration file to be modifiable without having to recompile everything at each modification...