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 5bd2c80 commit 3f966e4Copy full SHA for 3f966e4
.github/workflows/ci.yml
@@ -67,6 +67,12 @@ jobs:
67
sudo dpkg --force-overwrite -i ${{ matrix.libgccjit_version.gcc }}
68
echo 'gcc-path = "/usr/lib/"' > config.toml
69
70
+ - name: Install libstdc++
71
+ run: sudo apt-get install libstdc++6
72
+
73
+ - run: cc tests/main.cpp -o main -lstdc++
74
+ - run: cc tests/main.cpp -o main
75
76
- name: Set env
77
run: |
78
echo "workspace="$GITHUB_WORKSPACE >> $GITHUB_ENV
tests/main.cpp
@@ -0,0 +1,6 @@
1
+#include <iostream>
2
3
+int main() {
4
+ std::cout << "Hello, world!\n";
5
+ return 0;
6
+}
0 commit comments