diff --git a/Makefile b/Makefile index c8e487eb..6b51e2da 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,7 @@ TEST_SRC = $(TEST_DIR)/unit-tests.scm \ $(TEST_DIR)/base.scm \ $(TEST_DIR)/test.scm \ $(TEST_DIR)/threading.scm \ + $(TEST_DIR)/c-compiler-options.scm \ $(TEST_DIR)/test-shared-queue.scm \ $(TEST_DIR)/macro-hygiene.scm \ $(TEST_DIR)/match-tests.scm \ diff --git a/tests/c-compiler-options.scm b/tests/c-compiler-options.scm new file mode 100644 index 00000000..2ae1e5f8 --- /dev/null +++ b/tests/c-compiler-options.scm @@ -0,0 +1,11 @@ +(import (scheme base) + (scheme write) + (cyclone foreign)) + +;(c-linker-options "-I/tmp") +(c-compiler-options "-I/tmp") +;(define c-compiler-options list) +;(c-linker-options "-I/tmp") + +(display "hello") +