Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
9ad9a05e
Commit
9ad9a05e
authored
Apr 21, 2009
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
embedding example
Windows fixing needs help
parent
0bf694af
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
52 deletions
+32
-52
Demos/embed/Makefile
Demos/embed/Makefile
+13
-24
Demos/embed/Makefile.unix
Demos/embed/Makefile.unix
+13
-24
Demos/embed/embedded.pyx
Demos/embed/embedded.pyx
+6
-4
No files found.
Demos/embed/Makefile
View file @
9ad9a05e
PYVERSION
=
2.2
PYHOME
=
$(HOME)
/pkg/python/
$(PYVERSION)
PYARCH
=
$(PYHOME)
/
$(ARCH)
PYINCLUDE
=
\
-I
$(PYHOME)
/include/python
$(PYVERSION)
\
-I
$(PYARCH)
/include/python
$(PYVERSION)
PYLIB
=
-L
$(PYARCH)
/lib/python
$(PYVERSION)
/config
\
-lpython
$(PYVERSION)
\
-ldl
-lpthread
-lutil
-lm
# Makefile for creating our standalone Cython program
PYVERSION
=
2.3
PYPREFIX
=
/usr
INCLUDES
=
-I
$(PYPREFIX)
/include/python
$(PYVERSION)
%.c
:
%.pyx
../../bin/cython
$<
embedded
:
embedded.o
gcc
-o
$@
$^
-lpython
$(PYVERSION)
%.o
:
%
.c
gcc
-c
-fPIC
$(PYINCLUDE)
$<
embedded.o
:
embedded
.c
gcc
-c
$^
$(INCLUDES)
#%.so: %.o
# gcc -shared $< -lm -o $@
embedded.c
:
embedded.pyx
@
python ../../cython.py
--embed
embedded.pyx
all
:
main
main
:
main.o embedded.o
gcc main.o embedded.o
$(PYLIB)
-o
main
all
:
embedded
clean
:
@
echo
Cleaning Demos/embed
@
rm
-f
*
~
*
.o
*
.so core core.
*
embedded.h embedded.c main
embedded.h
:
embedded.c
main.o
:
embedded.h
@
rm
-f
*
~
*
.o
*
.so core core.
*
*
.c embedded
Demos/embed/Makefile.unix
View file @
9ad9a05e
PYVERSION
=
2.2
PYHOME
=
$(HOME)
/pkg/python/
$(PYVERSION)
PYARCH
=
$(PYHOME)
/
$(ARCH)
PYINCLUDE
=
\
-I
$(PYHOME)
/include/python
$(PYVERSION)
\
-I
$(PYARCH)
/include/python
$(PYVERSION)
PYLIB
=
-L
$(PYARCH)
/lib/python
$(PYVERSION)
/config
\
-lpython
$(PYVERSION)
\
-ldl
-lpthread
-lutil
-lm
# Makefile for creating our standalone Cython program
PYVERSION
=
2.3
PYPREFIX
=
/usr
INCLUDES
=
-I
$(PYPREFIX)
/include/python
$(PYVERSION)
%.c
:
%.pyx
../../bin/cython
$<
embedded
:
embedded.o
gcc
-o
$@
$^
-lpython
$(PYVERSION)
%.o
:
%
.c
gcc
-c
-fPIC
$(PYINCLUDE)
$<
embedded.o
:
embedded
.c
gcc
-c
$^
$(INCLUDES)
#%.so: %.o
# gcc -shared $< -lm -o $@
embedded.c
:
embedded.pyx
@
python ../../cython.py
--embed
embedded.pyx
all
:
main
main
:
main.o embedded.o
gcc main.o embedded.o
$(PYLIB)
-o
main
all
:
embedded
clean
:
@
echo
Cleaning Demos/embed
@
rm
-f
*
~
*
.o
*
.so core core.
*
embedded.h embedded.c main
embedded.h
:
embedded.c
main.o
:
embedded.h
@
rm
-f
*
~
*
.o
*
.so core core.
*
*
.c embedded
Demos/embed/embedded.pyx
View file @
9ad9a05e
cdef
public
void
spam
():
praise
()
def
praise
():
print
"Spam, glorious spam!"
print
__name__
if
__name__
==
"__main__"
:
print
"Hi, I'm embedded."
else
:
print
"I'm being imported."
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment