This commit is contained in:
chacha
2026-02-24 01:08:16 +00:00
parent 194570d7fc
commit ce3bbd57c3
2 changed files with 10 additions and 9 deletions

2
Jenkinsfile vendored
View File

@@ -9,7 +9,7 @@ pipeline {
stage('SaveBin')
{
steps {
archiveArtifacts artifacts: 'v2memtest'
archiveArtifacts artifacts: 'v2-tmu-memtester'
}
}
}

View File

@@ -1,10 +1,9 @@
CC=gcc
CFLAGS= -Wall -std=gnu99 -O6 -march=pentium3 -fomit-frame-pointer -funroll-loops \
-fexpensive-optimizations -ffast-math -fno-strict-aliasing
CFLAGS+=-I. -I./glide/headers -I/usr/include/glide
CFLAGS+=-DCVG
CFLAGS= -Wall -std=gnu99 -O6 -march=pentium3 -fomit-frame-pointer -funroll-loops \
-fexpensive-optimizations -ffast-math -fno-strict-aliasing \
-I. -I./glide/headers -I/usr/include/glide \
-DCVG
LFLAGS=-L./glide/lib -lglide
@@ -16,10 +15,12 @@ OBJ=main.o \
Test_Data.o \
Test_Data_Huge.o
%.o: %.c
HEADERS := $(notdir $(wildcard *.h))
%.o: %.c $(HEADERS)
$(CC) -c -o $@ $< $(CFLAGS)
v2memtest : $(OBJ)
v2-tmu-memtester : $(OBJ)
$(CC) -o $@ $(LFLAGS) $^
all: v2memtest
all: v2-tmu-memtester