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 4690264 commit 79eb593Copy full SHA for 79eb593
.gitignore
@@ -4,7 +4,6 @@
4
*.dll
5
*.so
6
*.dylib
7
-!bin/hsa.exe
8
9
# Test binary, built with `go test -c`
10
*.test
@@ -20,3 +19,5 @@ testdata
20
19
hsa/log
21
22
/vendor/
+
23
+!bin/hsa.exe
bin/composer-adapter/hsa
@@ -9,7 +9,7 @@ $output = [];
$args = implode(' ', $argv);
11
// execute binary
12
-exec("../hsa $args", $output);
+exec(__DIR__."/../hsa $args", $output);
13
14
// Print output line by line
15
foreach ($output as $line) {
0 commit comments