mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-17 11:22:22 -07:00
ad0a413b40
A package has canonically always been a directory, but odin allowing you to build a single-file package confused newcomers who didn't understand why they could then not access variables and procedures from another file in the same directory.
This change disallows building single-file packages by default, requiring the `-file` flag to acknowledge you understand the nuance.
`-help` for these commands also clarifies the difference.
```
W:\Odin>odin build -help
odin is a tool for managing Odin source code
Usage:
odin build [arguments]
build Compile directory of .odin files as an executable.
One must contain the program's entry point, all must be in the same package.
Use `-file` to build a single file instead.
Examples:
odin build . # Build package in current directory
odin build <dir> # Build package in <dir>
odin build filename.odin -file # Build single-file package, must contain entry point.
Flags
-file
Tells `odin build` to treat the given file as a self-contained package.
This means that `<dir>/a.odin` won't have access to `<dir>/b.odin`'s contents.
```
```
W:\Odin>odin run examples\demo\demo.odin
ERROR: `odin run` takes a package as its first argument.
Did you mean `odin run examples\demo\demo.odin -file`?
The `-file` flag tells it to treat a file as a self-contained package.
```
151 lines
3.0 KiB
Bash
Executable File
151 lines
3.0 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
GIT_SHA=$(git rev-parse --short HEAD)
|
|
DISABLED_WARNINGS="-Wno-switch -Wno-macro-redefined -Wno-unused-value"
|
|
LDFLAGS="-pthread -lm -lstdc++"
|
|
CFLAGS="-std=c++14 -DGIT_SHA=\"$GIT_SHA\""
|
|
CFLAGS="$CFLAGS -DODIN_VERSION_RAW=\"dev-$(date +"%Y-%m")\""
|
|
CC=clang
|
|
OS=$(uname)
|
|
|
|
panic() {
|
|
printf "%s\n" "$1"
|
|
exit 1
|
|
}
|
|
|
|
version() { echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }'; }
|
|
|
|
config_darwin() {
|
|
ARCH=$(uname -m)
|
|
LLVM_CONFIG=llvm-config
|
|
|
|
# allow for arm only llvm's with version 13
|
|
if [ ARCH == arm64 ]; then
|
|
MIN_LLVM_VERSION=("13.0.0")
|
|
else
|
|
# allow for x86 / amd64 all llvm versions begining from 11
|
|
MIN_LLVM_VERSION=("11.1.0")
|
|
fi
|
|
|
|
if [ $(version $($LLVM_CONFIG --version)) -lt $(version $MIN_LLVM_VERSION) ]; then
|
|
if [ ARCH == arm64 ]; then
|
|
panic "Requirement: llvm-config must be base version 13 for arm64"
|
|
else
|
|
panic "Requirement: llvm-config must be base version greater than 11 for amd64/x86"
|
|
fi
|
|
fi
|
|
|
|
LDFLAGS="$LDFLAGS -liconv -ldl"
|
|
CFLAGS="$CFLAGS $($LLVM_CONFIG --cxxflags --ldflags)"
|
|
LDFLAGS="$LDFLAGS -lLLVM-C"
|
|
}
|
|
|
|
config_freebsd() {
|
|
LLVM_CONFIG=/usr/local/bin/llvm-config11
|
|
|
|
CFLAGS="$CFLAGS $($LLVM_CONFIG --cxxflags --ldflags)"
|
|
LDFLAGS="$LDFLAGS $($LLVM_CONFIG --libs core native --system-libs)"
|
|
}
|
|
|
|
config_openbsd() {
|
|
LLVM_CONFIG=/usr/local/bin/llvm-config
|
|
|
|
LDFLAGS="$LDFLAGS -liconv"
|
|
CFLAGS="$CFLAGS $($LLVM_CONFIG --cxxflags --ldflags)"
|
|
LDFLAGS="$LDFLAGS $($LLVM_CONFIG --libs core native --system-libs)"
|
|
}
|
|
|
|
config_linux() {
|
|
if which llvm-config > /dev/null 2>&1; then
|
|
LLVM_CONFIG=llvm-config
|
|
elif which llvm-config-11 > /dev/null 2>&1; then
|
|
LLVM_CONFIG=llvm-config-11
|
|
elif which llvm-config-11-64 > /dev/null 2>&1; then
|
|
LLVM_CONFIG=llvm-config-11-64
|
|
else
|
|
panic "Unable to find LLVM-config"
|
|
fi
|
|
|
|
MIN_LLVM_VERSION=("11.0.0")
|
|
if [ $(version $($LLVM_CONFIG --version)) -lt $(version $MIN_LLVM_VERSION) ]; then
|
|
echo "Tried to use " $(which $LLVM_CONFIG) "version" $($LLVM_CONFIG --version)
|
|
panic "Requirement: llvm-config must be base version greater than 11"
|
|
fi
|
|
|
|
LDFLAGS="$LDFLAGS -ldl"
|
|
CFLAGS="$CFLAGS $($LLVM_CONFIG --cxxflags --ldflags)"
|
|
LDFLAGS="$LDFLAGS $($LLVM_CONFIG --libs core native --system-libs)"
|
|
}
|
|
|
|
build_odin() {
|
|
case $1 in
|
|
debug)
|
|
EXTRAFLAGS="-g"
|
|
;;
|
|
release)
|
|
EXTRAFLAGS="-O3"
|
|
;;
|
|
release-native)
|
|
EXTRAFLAGS="-O3 -march=native"
|
|
;;
|
|
nightly)
|
|
EXTRAFLAGS="-DNIGHTLY -O3"
|
|
;;
|
|
*)
|
|
panic "Build mode unsupported!"
|
|
esac
|
|
|
|
set -x
|
|
$CC src/main.cpp src/libtommath.cpp $DISABLED_WARNINGS $CFLAGS $EXTRAFLAGS $LDFLAGS -o odin
|
|
set +x
|
|
}
|
|
|
|
run_demo() {
|
|
./odin run examples/demo/demo.odin -file
|
|
}
|
|
|
|
case $OS in
|
|
Linux)
|
|
config_linux
|
|
;;
|
|
Darwin)
|
|
config_darwin
|
|
;;
|
|
OpenBSD)
|
|
config_openbsd
|
|
;;
|
|
FreeBSD)
|
|
config_freebsd
|
|
;;
|
|
*)
|
|
panic "Platform unsupported!"
|
|
esac
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
build_odin debug
|
|
run_demo
|
|
exit 0
|
|
fi
|
|
|
|
if [[ $# -eq 1 ]]; then
|
|
case $1 in
|
|
report)
|
|
if [[ ! -f "./odin" ]]; then
|
|
build_odin debug
|
|
fi
|
|
|
|
./odin report
|
|
exit 0
|
|
;;
|
|
*)
|
|
build_odin $1
|
|
;;
|
|
esac
|
|
|
|
run_demo
|
|
exit 0
|
|
else
|
|
panic "Too many arguments!"
|
|
fi
|