-
-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more languages to the build system #906
Comments
Most languages will add temporary files for build, |
I think we only need to add the minimal amount of things to the |
I don't really have a strong opinion on this^^ |
Well there's a way to do that, but it adds complexity to the scripts |
The gfortran compiler is part of the Gnu Compiler Collection and works like the C compiler gcc. So
will produce executable |
@Beliavsky No obstacles to adding Fortran code, this is about adding an automated system to compile all the examples in the Archive. |
Feature Request
Add more language builders to the SCons-based build system.
Description
Since #885 was merged, we now have a build system that aims to provide a compilation framework for every compiled language. However, most of the work is currently not done yet.
Here are all the current languages in the AAA (in alphabetical order of the directory names). Each of the languages needs either a way to compile an executable in the
build/
directory at the project root, copy the interpreted file to the correct folder, or prove that it is impossible to do.If you want to provide compilation instructions, please follow the example provided in #885: a builder per language which has the name of the language which each leaf
SConscript
uses, and the list of the language's folders added to thelanguage
list in the rootSConstruct
file.Additional context
Related to #870.
Don't hesitate to reach out to me (@Amaras on GitHub, and .amaras on Discord, formerly Amaras#8643) if you have questions.
The text was updated successfully, but these errors were encountered: