Dman95 / SASM

SASM - simple crossplatform IDE for NASM, MASM, GAS and FASM assembly languages

Home Page:http://dman95.github.io/SASM/

Repository from Github https://github.comDman95/SASMRepository from Github https://github.comDman95/SASM

"Directory NASM does not exist" -- MacOS build

lstrgar opened this issue · comments

Hi. System details:

MacOS 11.2.3
qt 5.15.2
make 3.8.1

I built and installed without any issues excluding the following on make install:

Error copying .../Desktop/Dman95-SASM-7e3ae6d/Linux/bin/fasm to /usr/bin/fasm: Cannot create /usr/bin/fasm for output
make: *** [install_binfile] Error 3

The executable is constructed though and I can run the program from the command line (e.g. sudo sasm.app/Contents/MacOS/sasmto) open the GUI. I next selected create new project and the following script is opened:


section .text
global CMAIN
CMAIN:
    ;write your code here
    xor eax, eax
    ret

If I try to build I get the following dialogue pop up error

Screen Shot 2021-08-25 at 8 39 43 AM

I have verified that the NASM directory is present in .../Dman95-SASM-7e3ae6d/Linux/share/sasm. I also have nasm installed on the system via homebrew at /usr/local/bin/nasm.

Thanks in advance for any help or guidance.

Resolved my copying the source directory Linux folder to be next to the executable.

commented