too many arguments error


Click here for full thread
Forum Vet
1) you need to USE_INTERNALBLAS=y

export  USE_INTERNALBLAS=y


2) the error /bin/sh: line 0: [: too many arguments seems to indicate that some of the required mingw commands are missing from your path. Please try the following commands to see if your PATH variable is correctly defined


which ar

which nm


If the output of the following commands is bash: nm: command not found, then you need to add the directory where ar.exe and nm.exe to your PATH. For example, if you have installed mingw under c:\

export PATH=/c/MinGW/bin:$PATH