cdf6e05ac0
Asmc is a slow-burning attempt of making a functional programming language out of assembly. It supports AVX-512 instructions (Masm v14) but the Version macro is currently set to v10. The assembler is written in assembly and is open source under the GNU General Public License. It runs on Windows and Linux. NOTE: this assembler is written in assembly and has its own structure definitions for Linux that it uses when it builds itself. While these are wrong on FreeBSD, the set of library calls it does is small and only readdir() and sigaction() seem to possibly diverge. However, this does not seem to cause any observable problems when using asmc to build the LZMA SDK on amd64, though there is a crash on i386 I need to investigate further. WWW: https://github.com/nidud/asmc
12 lines
268 B
Plaintext
12 lines
268 B
Plaintext
--- source/asmc/makefile.orig 2026-03-12 15:53:40 UTC
|
|
+++ source/asmc/makefile
|
|
@@ -2,7 +2,7 @@
|
|
# Makefile for Asmc
|
|
#
|
|
|
|
-flags = -Cs -Iinc -I../../include
|
|
+flags = -Cs -Iinc -I../../include -Bl/usr/bin/cc
|
|
ifdef SUBVERSION
|
|
flags += -DSUBVERSION=$(SUBVERSION)
|
|
endif
|