mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 07:35:38 +00:00
Fixed tabs in Makefile, removed gcc-specific alignment of poly
This commit is contained in:
parent
3203f115e5
commit
bf17b28d9d
@ -8,8 +8,8 @@ CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99 -I../../../common $(EXTRAFLAGS)
|
||||
all: $(LIB)
|
||||
|
||||
$(LIB): $(OBJECTS)
|
||||
$(AR) -r $@ $(OBJECTS)
|
||||
$(AR) -r $@ $(OBJECTS)
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJECTS)
|
||||
$(RM) $(LIB)
|
||||
$(RM) $(OBJECTS)
|
||||
$(RM) $(LIB)
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
typedef struct {
|
||||
uint32_t coeffs[N];
|
||||
} poly __attribute__((aligned(32)));
|
||||
} poly;
|
||||
|
||||
void PQCLEAN_DILITHIUMIII_poly_reduce(poly *a);
|
||||
void PQCLEAN_DILITHIUMIII_poly_csubq(poly *a);
|
||||
|
Loading…
Reference in New Issue
Block a user