We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00ada66 commit 91d4503Copy full SHA for 91d4503
graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/GraalPythonCC.java
@@ -167,7 +167,7 @@ private void parseOptions(String[] args) {
167
throw new RuntimeException("cannot mix source and compiled sources");
168
}
169
fileInputs.add(arg);
170
- } else if (arg.endsWith(".c") || arg.endsWith(".cpp") || arg.endsWith(".cxx")) {
+ } else if (arg.endsWith(".c") || arg.endsWith(".cc") || arg.endsWith(".cpp") || arg.endsWith(".cxx")) {
171
if (arg.endsWith(".cpp") || arg.endsWith(".cxx")) {
172
isCpp = true;
173
0 commit comments