Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Mar 4, 2024
1 parent ac44c54 commit 5e3b330
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .ci/cross-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,9 @@ tar Jxvf gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu.tar.xz

make clean
export PATH=gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu/bin:$PATH
# make CROSS_COMPILE=aarch64-linux-gnu- check || exit 1 # ARMv8-A
make CROSS_COMPILE=aarch64-linux-gnu- check || exit 1 # ARMv8-A

echo "=----"
ls
echo "=----"

# aarch64-linux-gnu-cpp -Wall -Wcast-qual -I. -march=armv8-a+fp+simd -std=gnu++14 -c -MMD -MF
aarch64-linux-gnu-g++ -Wall -Wcast-qual -I. -march=armv8-a+fp+simd test.c -o test
# aarch64-linux-gnu-g++ -Wall -Wcast-qual -I. -march=armv8-a+fp+simd test.c -o test


# make clean
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ deps := $(OBJS:%.o=%.o.d)

.SUFFIXES: .o .cpp
.cpp.o:
$(CXX) -o $@ $(CXXFLAGS) -c -MMD -MF $@.d $<
$(CXX) -o $@ $(CXXFLAGS) -c -MMD -MF $@.d $< -v

EXEC = tests/main

Expand Down

0 comments on commit 5e3b330

Please sign in to comment.