bm icon indicating copy to clipboard operation
bm copied to clipboard

(nobuild) Build script doesn't support additional compiler flags

Open zhiayang opened this issue 4 years ago • 1 comments

On some platforms (cough old-ass Solaris cough), the C compiler might default to generating 32-bit code, which obviously doesn't work for bm. Ideally, we would be able to do something like this:

CC="cc -m64" nobuild test

but that won't work, because nobuild passes the entire string "cc -m64" to execvp, which obviously doesn't exist.

zhiayang avatar May 21 '21 14:05 zhiayang

@zhiayang oh! Thank you for reporting this use case! I'll see what we can do about it!

rexim avatar May 21 '21 17:05 rexim