gcc
Here are 748 public repositories matching this topic...
-
Updated
Aug 23, 2020 - C++
ryanmjacobs / c
In order to support package managers better, which write their retrieved data typically in unique paths, it would be nice to be able to declare multiple base_dir
paths to translate absolute paths in relative ones.
For example a package manager would have the following paths in its cache:
~/data/libA/1.0.0/acme/stable/package/63da998e3642b50bee33f4449826b2d623661505/include/libA/myheader
-
Updated
Aug 20, 2020 - C++
-
Updated
Aug 23, 2020 - C
-
Updated
Aug 11, 2020 - C
-
Updated
Aug 4, 2020 - Makefile
-
Updated
Aug 25, 2020 - JavaScript
-
Updated
Oct 1, 2019 - C
-
Updated
Aug 25, 2020 - Shell
-
Updated
Apr 29, 2020 - C++
-
Updated
Oct 28, 2017 - C++
Bitwise operators are supported for now, also support addition and subtraction for INTEGERS ONLY.
Add Android example
Currently, decompilation of Windows executables produces unreadable and/or semantically wrong output because the signatures for most of the Windows API functions are missing. We should add signatures for at least the most commonly used ones.
-
Updated
Jun 8, 2019 - XSLT
-
Updated
Apr 8, 2019 - Python
Currently compiling Data.Either.Nested
takes about 10 seconds. It emits about 84k lines of code! So we should (a) investigate optimization passes to remove the lines to output and (b) make it run fast even when generating large files like that.
-
Updated
Jan 8, 2018 - C
-
Updated
May 21, 2020 - Shell
-
Updated
Apr 6, 2019 - C++
Improve this page
Add a description, image, and links to the gcc topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gcc topic, visit your repo's landing page and select "manage topics."
Currently, the architecture of the CLI is based on (sub)commands and options. Commands are expected to be provided as the first argument, and do effectively decide which feature is to be used. OTOH, options provide parameters to the commands. However, there is no syntactical difference, as both commands and options start with
--
or-i
. As a result, we rely on properly formating--help
and on