Skip to content
Snippets Groups Projects
Commit bf987098 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Use openlibm

parent 172517e4
No related branches found
No related tags found
No related merge requests found
#include <openlibm.h>
...@@ -2,6 +2,11 @@ set -ex ...@@ -2,6 +2,11 @@ set -ex
cargo build cargo build
cargo build --manifest-path crt0/Cargo.toml cargo build --manifest-path crt0/Cargo.toml
cd openlibm
make
cd ..
cd tests cd tests
make clean make clean
make run make run
...@@ -2,4 +2,5 @@ ...@@ -2,4 +2,5 @@
/args /args
/create /create
/create.out /create.out
/math
/write /write
...@@ -2,6 +2,7 @@ BINS=\ ...@@ -2,6 +2,7 @@ BINS=\
alloc \ alloc \
args \ args \
create \ create \
math \
write write
all: $(BINS) all: $(BINS)
...@@ -13,4 +14,15 @@ run: $(BINS) ...@@ -13,4 +14,15 @@ run: $(BINS)
for bin in $(BINS); do echo "\\033[1m$${bin}\\033[0m"; ./$${bin} test args; done for bin in $(BINS); do echo "\\033[1m$${bin}\\033[0m"; ./$${bin} test args; done
%: %.c %: %.c
gcc -nostdinc -nostdlib -I ../include -I ../target/include ../target/debug/libcrt0.a $< ../target/debug/libc.a -o $@ gcc \
-nostdinc \
-nostdlib \
-I ../include \
-I ../target/include \
-I ../openlibm/include \
-I ../openlibm/src \
../target/debug/libcrt0.a \
$< \
../target/debug/libc.a \
../openlibm/libopenlibm.a \
-o $@
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
int main(int argc, char **argv) { int main(int argc, char ** argv) {
write(STDERR_FILENO, "malloc\n", 7); write(STDERR_FILENO, "malloc\n", 7);
char * ptr = (char *)malloc(256); char * ptr = (char *)malloc(256);
write(STDERR_FILENO, "set\n", 4); write(STDERR_FILENO, "set\n", 4);
......
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
int main(int argc, char **argv) { int main(int argc, char ** argv) {
int i; int i;
for(i = 0; i < argc; i++) { for(i = 0; i < argc; i++) {
write(STDOUT_FILENO, argv[i], strlen(argv[i])); write(STDOUT_FILENO, argv[i], strlen(argv[i]));
......
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
int main(int argc, char **argv) { int main(int argc, char ** argv) {
int fd = creat("create.out", 0755); int fd = creat("create.out", 0755);
if (fd >= 0) { if (fd >= 0) {
write(fd, "Hello World!\n", 13); write(fd, "Hello World!\n", 13);
......
#include <math.h>
int main(int argc, char ** argv) {
float c = cos(3.14);
}
#include <unistd.h> #include <unistd.h>
int main(int argc, char **argv) { int main(int argc, char ** argv) {
write(STDOUT_FILENO, "Hello World!\n", 13); write(STDOUT_FILENO, "Hello World!\n", 13);
return 0; return 0;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment