You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
skinpeel/compile_convert.sh

11 lines
210 B
Bash

#! /bin/bash
set -ex
CFLAGS=(
-O3 -std=c++17 -march=native
-Wall -Wextra -Wno-unused-function -Wno-unused-parameter
-Wno-missing-field-initializers
)
clang++ "${CFLAGS[@]}" -o convert convert.cpp