Compare commits

..

1 Commits

Author SHA1 Message Date
6251aa5be8 Version v0.3.24 - Test build with new structure 2025-12-18 08:55:27 -04:00

View File

@@ -269,7 +269,6 @@ build_project() {
else else
# Build both architectures # Build both architectures
print_status "Building OTP project for x86_64..." print_status "Building OTP project for x86_64..."
make clean
make CC=gcc ARCH=x86_64 make CC=gcc ARCH=x86_64
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
print_success "x86_64 build completed successfully" print_success "x86_64 build completed successfully"
@@ -279,7 +278,8 @@ build_project() {
fi fi
print_status "Building OTP project for ARM64/AArch64..." print_status "Building OTP project for ARM64/AArch64..."
make clean # Clean only object files, not the x86_64 binary
rm -f src/*.o
make CC=aarch64-linux-gnu-gcc ARCH=arm64 make CC=aarch64-linux-gnu-gcc ARCH=arm64
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
print_success "ARM64/AArch64 build completed successfully" print_success "ARM64/AArch64 build completed successfully"