The msys tag has no wiki summary.
2
votes
1answer
603 views
Calling java from Bash: “Cannot execute binary file”
I have this simple Bash script:
#!/bin/bash
java -jar ClosureCompiler/compiler.jar --js ../src/typescript.js --js ../src/ts-compiler.js --js_output_file TSCompiler.js
I'm getting this error when I ...
1
vote
3answers
244 views
build script: how to implement a “skip previously completed step”
I'm trying to create a build script for GCC (which works, for now), but I would like to be able to skip rebuilding all the prereq libraries when I'm only updating GCC/binutils for example. I thought ...
1
vote
2answers
225 views
Problematic build script with quotes
Hi I'm trying to create a build script that executes these commands:
cd libiconv
../../src/libiconv/configure --prefix=/home/ruben/mingw64/build/gcc-libs \
...