Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4e083798
Kaydet (Commit)
4e083798
authored
Ara 16, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch and new file by Geoff Furnish for C++ compilation.
üst
95012193
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
Makefile.pre.in
Modules/Makefile.pre.in
+6
-2
ccpython.cc
Modules/ccpython.cc
+11
-0
No files found.
Modules/Makefile.pre.in
Dosyayı görüntüle @
4e083798
...
@@ -17,7 +17,7 @@ VERSION= @VERSION@
...
@@ -17,7 +17,7 @@ VERSION= @VERSION@
srcdir
=
@srcdir@
srcdir
=
@srcdir@
VPATH
=
@srcdir@
VPATH
=
@srcdir@
@SET_C
CC
@
@SET_C
XX
@
CC
=
@CC@
CC
=
@CC@
RANLIB
=
@RANLIB@
RANLIB
=
@RANLIB@
AR
=
@AR@
AR
=
@AR@
...
@@ -95,7 +95,8 @@ MAKESETUP= $(srcdir)/makesetup
...
@@ -95,7 +95,8 @@ MAKESETUP= $(srcdir)/makesetup
FIXOBJS
=
config.o getpath.o main.o getbuildinfo.o
FIXOBJS
=
config.o getpath.o main.o getbuildinfo.o
OBJS
=
$(MODOBJS)
$(FIXOBJS)
OBJS
=
$(MODOBJS)
$(FIXOBJS)
MAINOBJ
=
python.o
#MAINOBJ= python.o
MAINOBJ
=
@MAINOBJ@
SYSLIBS
=
$(LIBM)
$(LIBC)
SYSLIBS
=
$(LIBM)
$(LIBC)
...
@@ -243,4 +244,7 @@ $(DESTSHARED):
...
@@ -243,4 +244,7 @@ $(DESTSHARED):
fi
;
\
fi
;
\
done
done
ccpython.o
:
ccpython.cc
$(CXX)
$(CFLAGS)
-c
$*
.cc
# Stuff is appended here by makesetup and make depend
# Stuff is appended here by makesetup and make depend
Modules/ccpython.cc
0 → 100644
Dosyayı görüntüle @
4e083798
/* Minimal main program -- everything is loaded from the library */
#include "Python.h"
extern
"C"
DL_EXPORT
(
int
)
Py_Main
(
int
argc
,
char
*
argv
[]
);
int
main
(
int
argc
,
char
*
argv
[]
)
{
return
Py_Main
(
argc
,
argv
);
}
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