CN112114811A - Compiling method, device and equipment - Google Patents

Compiling method, device and equipment Download PDF

Info

Publication number
CN112114811A
CN112114811A CN202010838882.4A CN202010838882A CN112114811A CN 112114811 A CN112114811 A CN 112114811A CN 202010838882 A CN202010838882 A CN 202010838882A CN 112114811 A CN112114811 A CN 112114811A
Authority
CN
China
Prior art keywords
file
source file
source
backup
header
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202010838882.4A
Other languages
Chinese (zh)
Inventor
施赛健
姜辛
牛胜福
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Shanghai Yuancheng Automobile Technology Co Ltd
Original Assignee
Shanghai Yuancheng Automobile Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Shanghai Yuancheng Automobile Technology Co Ltd filed Critical Shanghai Yuancheng Automobile Technology Co Ltd
Priority to CN202010838882.4A priority Critical patent/CN112114811A/en
Publication of CN112114811A publication Critical patent/CN112114811A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/51Source to source

Abstract

The invention discloses a compiling method, a compiling device and compiling equipment. Wherein the method comprises the following steps: determining a source file to be compiled according to a comparison result of the hash value between the source file and the backup source file or a comparison result of the hash value between the header file and the backup header file; and recompiling the source file to be compiled. According to the technical scheme provided by the embodiment of the invention, the source file needing to be recompiled can be accurately judged through the hash value comparison result between the source file and the backup file, and compared with the prior art, the compiling efficiency is improved.

Description

Compiling method, device and equipment
Technical Field
The embodiment of the invention relates to the technical field of software development, in particular to a compiling method, a compiling device and compiling equipment.
Background
In the embedded software development process, the C language is a common programming language, wherein the file types include a source file (C file), a header file (h file), and a compilation product object file (o file), and the C file and the o file are in one-to-one correspondence. In the prior art, MAKE and MAKEFILE are generally used for compiling, and the principle is that dependence between c files and h files is defined in MAKEFILE, and when c files themselves or h files associated with c files change, the c files need to be recompiled.
In the prior art, makefile can be automatically generated through a tool to determine the dependency relationship of files in embedded engineering, and after the makefile is generally generated once, the makefile file can be manually changed when a small amount of files are changed.
However, the above-mentioned automatic generation of makefile takes a long time, and if a small amount of change is manually completed, it takes a certain time each time, and there is a certain requirement for engineers, and there is a possibility of error, so the prior art has a problem of low compiling efficiency.
Disclosure of Invention
The invention provides compiling, a device and equipment, which are used for accurately judging a file needing to be recompiled and improving compiling efficiency.
In a first aspect, an embodiment of the present invention provides a compiling method, where the method includes:
determining a source file to be compiled according to a comparison result of the hash value between the source file and the backup source file or a comparison result of the hash value between the header file and the backup header file;
and recompiling the source file to be compiled.
In a second aspect, an embodiment of the present invention further provides a compiling apparatus, where the apparatus includes:
the determining module is used for determining a source file to be compiled according to a comparison result of the hash value between the source file and the backup source file or a comparison result of the hash value between the header file and the backup header file;
and the compiling module is used for recompiling the source file to be compiled.
In a third aspect, an embodiment of the present invention further provides a compiling apparatus, where the compiling apparatus includes:
one or more processors;
a storage device for storing one or more programs,
when the one or more programs are executed by the one or more processors, the one or more processors implement a compiling method according to any one of the embodiments of the invention.
According to the method and the device, the source file to be compiled is determined according to the comparison result of the hash value between the source file and the backup file or the comparison result of the hash value between the header file and the backup header file, and then the source file to be compiled is recompiled. According to the technical scheme provided by the embodiment of the invention, the source file needing to be recompiled can be accurately judged through the hash value comparison result between the source file and the backup file, and compared with the prior art, the compiling efficiency is improved.
Drawings
Fig. 1 is a flowchart of a compiling method according to an embodiment of the present invention;
FIG. 2 is a block diagram of a process for determining whether to copy a source file according to a second embodiment of the present invention;
fig. 3 is a process for determining whether to copy a header file according to a second embodiment of the present invention;
fig. 4 is a schematic structural diagram of a compiling apparatus according to a third embodiment of the present invention;
fig. 5 is a schematic structural diagram of a compiling apparatus according to a fourth embodiment of the present invention.
Detailed Description
The present invention will be described in further detail with reference to the accompanying drawings and examples. It is to be understood that the specific embodiments described herein are merely illustrative of the invention and are not limiting of the invention. It should be further noted that, for the convenience of description, only some of the structures related to the present invention are shown in the drawings, not all of the structures.
Example one
Fig. 1 is a flowchart of a compiling method according to an embodiment of the present invention, where the embodiment is applicable to a case of compiling a source file, and the method may be executed by a compiling apparatus, where the apparatus may be implemented by software and/or hardware.
Referring to fig. 1, the method specifically includes the following steps:
s110, determining a source file to be compiled according to a comparison result of the hash values between the source file and the backup source file or according to a comparison result of the hash values between the header file and the backup header file.
The source file to be compiled may be a changed source file or a source file associated with a changed header file.
As an example, in this embodiment, C language is used as a programming language in the software development process, file types of the C language in the software development process include a source file (C file), a header file (h file), and a compilation product object file (o file), where the C file and the o file correspond to each other one by one, and a dependency file, which is denoted as a d file, is generated in the source file compilation process. It should be noted that the technical solution of the embodiment of the present invention can be applied to all compilers that can generate d files after compiling, and the C language is only an example in the embodiment of the present invention.
Furthermore, the c file, the o file, and the d file are in one-to-one correspondence, and the d file includes all the h files used by the corresponding c file, that is, when the h files included in the d file change, the corresponding c file needs to be recompiled.
In this embodiment, the c file and the h file in the last compiling environment, that is, the backup source file and the backup header file, are compared with hash values of the c file and the h file which are ready to be compiled at present, and the source file to be compiled is determined according to the comparison result.
As an optional implementation manner, determining a source file to be compiled according to a comparison result of hash values between the source file and the backup source file includes: respectively determining hash values of a source file and a backup source file; comparing hash values between the source files with the same file names and the backup source files; and if the hash values are different, the corresponding source file is a changed source file, and the changed source file is used as a source file to be compiled.
As another optional implementation, determining the source file to be compiled according to the comparison result of the hash values between the header file and the backup header file includes: respectively determining hash values of a header file and a backup header file; comparing hash values between the head files with the same file name and the backup head files; if the hash values are different, the corresponding header file is a changed header file; and determining an associated source file according to the changed header file, and taking the associated source file as a source file to be compiled.
And S120, recompiling the source file to be compiled.
In this embodiment, when the changed source file or the source file corresponding to the changed header file is determined by the script, the source file to be compiled is recompiled to generate the dependency relationship file of the source file.
According to the technical scheme of the embodiment, the source file to be compiled is determined according to the comparison result of the hash values between the source file and the backup file or the comparison result of the hash values between the header file and the backup header file, and then the source file to be compiled is recompiled.
Example two
When the compilation of the source file is started, the source file and the header file need to be copied from the source folder to the compilation folder. In this embodiment, the programming language is taken as C language as an example, the corresponding source file is C file, and the header file is h file.
Fig. 2 shows a process of determining copy of a source file, which includes the following specific steps:
step 2.1, firstly, judging whether a new file exists or not, wherein the file comprises the following steps: traversing all the file names c of the backup source files according to all the file names c of the source files; if the file name of the source file which is not traversed exists, the source file which is not traversed is a newly added source file, and if the newly added source file has a corresponding compiled file (. o file) and a dependent file (. d file), the compiled file and the dependent file which correspond to the newly added source file are deleted; and copying the newly added source file into a backup source file folder, and recompiling the newly added source file.
Step 2.2, judging whether missing files exist: traversing all file names of the source file according to all the file names c of the backup source file; if the file name of the backup source file which is not traversed exists, the backup source file which is not traversed is a missing source file; and if the missing source file has the corresponding compiled file and the dependency file, deleting the compiled file and the dependency file corresponding to the missing source file, and deleting the backup source file which is not traversed.
And 2.3, judging whether the currently generated compiled file and the dependency file correspond to the source file one by one, and if the active file does not have the corresponding compiled file and dependency file, recompiling the source file.
Step 2.4, judging whether a change exists, c file: and respectively carrying out a Hash algorithm on all the c files of the source file and the backup file, and then comparing the Hash values of the c files with the same file names. If the Hash values are different, the c file with the same name is changed, then the corresponding o and d files are deleted (if existing), then the c file under the source file is copied to the backup file to be covered, and the c file is recompiled.
Further, fig. 3 is a process of determining the duplication of the header file, which specifically refers to the following steps:
and 3.1, judging whether the file is changed: respectively determining hash values of a header file and a backup header file; comparing hash values between the head files with the same file name and the backup head files; if the hash values are different, the corresponding header file is a changed header file; and determining an associated source file according to the changed header file, wherein the associated source file is a source file to be compiled, and recompiling the associated source file.
In this embodiment, when the header file changes, the source file associated with the header file needs to be recompiled, so after the changed header file is determined, the associated source file needs to be determined according to the header file, and the associated source file needs to be recompiled.
And 3.2, judging whether the h file is newly added or not: traversing all file names of the backup head files according to all head file names of the source files; and if the header file name which is not traversed exists, the header file which is not traversed is a newly added header file, and the newly added header file is copied into the backup header folder.
And 3.3, judging whether the h file is missing or not: traversing all the head file names of the source file according to all the file names of the backup head files; and if the file name of the backup head file which is not traversed exists, the backup head file which is not traversed is a missing head file, and the backup head file which is not traversed is deleted.
The embodiment of the invention judges the dependency through the script, and compares the c file and the h file under the last compiling environment with the hash MD5 value of the file to be compiled at present to judge whether the file is changed.
EXAMPLE III
Fig. 4 is a schematic structural diagram of a compiling apparatus according to an embodiment of the present invention, where the compiling apparatus according to an embodiment of the present invention can execute a compiling method according to any embodiment of the present invention, and has functional modules and beneficial effects corresponding to the executing method. Referring to fig. 4, the apparatus includes a determination module and a compiling module.
The determining module 410 is configured to determine a source file to be compiled according to a comparison result of hash values between the source file and the backup source file, or according to a comparison result of hash values between the header file and the backup header file;
and the compiling module 420 is used for recompiling the source file to be compiled.
Specifically, the determining module 410 is specifically configured to: respectively determining hash values of a source file and a backup source file;
comparing hash values between the source files with the same file names and the backup source files;
and if the hash values are different, the corresponding source file is a changed source file, and the changed source file is used as a source file to be compiled.
Furthermore, the device also comprises a newly added source file processing module which is used for traversing all file names of the backup source file according to all file names of the source file;
if the file name of the source file which is not traversed exists, the source file which is not traversed is a newly added source file, and a compiled file and a dependent file which correspond to the newly added source file are deleted;
and copying the newly added source file into a backup source file folder, and recompiling the newly added source file.
Furthermore, the device also comprises a real source file processing module which is used for traversing all file names of the source file according to all file names of the backup source file;
if the file name of the backup source file which is not traversed exists, the backup source file which is not traversed is a missing source file;
and deleting the compiled file and the dependent file corresponding to the missing source file, and deleting the backup source file which is not traversed.
The device also comprises a corresponding relation processing module used for judging whether the currently generated compiled file and the dependent file correspond to the source file one by one,
and if the active file does not have the corresponding compiled file and the dependency file, recompiling the source file.
Further, the determining module is further specifically configured to:
respectively determining hash values of a header file and a backup header file;
comparing hash values between the head files with the same file name and the backup head files;
if the hash values are different, the corresponding header file is a changed header file;
and determining an associated source file according to the changed header file, and taking the associated source file as a source file to be compiled.
On the basis of the embodiment, the device also comprises a newly added head file processing module which is used for traversing all file names of the backup head files according to all head file names of the source files;
and if the header file name which is not traversed exists, the header file which is not traversed is a newly added header file, and the newly added header file is copied into the backup header folder.
Furthermore, the device also comprises a real head file processing module which is used for traversing all head file names of the source file according to all file names of the backup head file;
and if the file name of the backup head file which is not traversed exists, the backup head file which is not traversed is a missing head file, and the backup head file which is not traversed is deleted.
The compiling device provided by the embodiment of the invention can execute the compiling method provided by any embodiment of the invention, has the corresponding functional modules and beneficial effects of the executing method, and is not described in detail.
Example four
Fig. 5 is a schematic structural diagram of a compiling apparatus according to a fourth embodiment of the present invention. FIG. 5 illustrates a block diagram of an exemplary compilation facility 12 suitable for use in implementing embodiments of the present invention. The compiling apparatus 12 shown in fig. 5 is only an example, and should not bring any limitation to the functions and the scope of use of the embodiment of the present invention.
As shown in fig. 5, the compiling apparatus 12 is represented in the form of a general-purpose computing apparatus. The components of the compilation device 12 may include, but are not limited to: one or more processors or processing units 16, a system memory 28, and a bus 18 that couples various system components including the system memory 28 and the processing unit 16.
Bus 18 represents one or more of any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, an accelerated graphics port, and a processor or local bus using any of a variety of bus architectures. By way of example, such architectures include, but are not limited to, Industry Standard Architecture (ISA) bus, micro-channel architecture (MAC) bus, enhanced ISA bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnect (PCI) bus.
Compiling device 12 typically includes a variety of computer system readable media. Such media may be any available media that is accessible by compiling device 12 and includes both volatile and nonvolatile media, removable and non-removable media.
The system memory 28 may include computer system readable media in the form of volatile memory, such as Random Access Memory (RAM)30 and/or cache memory 32. Compiling device 12 may further include other removable/non-removable, volatile/nonvolatile computer system storage media. By way of example only, storage system 34 may be used to read from and write to non-removable, nonvolatile magnetic media (not shown in FIG. 5, and commonly referred to as a "hard drive"). Although not shown in FIG. 5, a magnetic disk drive for reading from and writing to a removable, nonvolatile magnetic disk (e.g., a "floppy disk") and an optical disk drive for reading from or writing to a removable, nonvolatile optical disk (e.g., a CD-ROM, DVD-ROM, or other optical media) may be provided. In these cases, each drive may be connected to bus 18 by one or more data media interfaces. Memory 28 may include at least one program product having a set (e.g., at least one) of program modules that are configured to carry out the functions of embodiments of the invention.
A program/utility 40 having a set (at least one) of program modules 42 may be stored, for example, in memory 28, such program modules 42 including, but not limited to, an operating system, one or more application programs, other program modules, and program data, each of which examples or some combination thereof may comprise an implementation of a network environment. Program modules 42 generally carry out the functions and/or methodologies of the described embodiments of the invention.
Compiling device 12 may also communicate with one or more external devices 14 (e.g., keyboard, pointing device, display 24, etc.), with one or more devices that enable a user to interact with compiling device 12, and/or with any devices (e.g., network card, modem, etc.) that enable compiling device 12 to communicate with one or more other computing devices. Such communication may be through an input/output (I/O) interface 22. Moreover, the compilation device 12 may also communicate with one or more networks (e.g., a Local Area Network (LAN), a Wide Area Network (WAN), and/or a public network, such as the Internet) via the network adapter 20. As shown, the network adapter 20 communicates with the other modules of the compilation facility 12 via the bus 18. It should be understood that although not shown in the figures, other hardware and/or software modules may be used in conjunction with compiling device 12, including but not limited to: microcode, device drivers, redundant processing units, external disk drive arrays, RAID systems, tape drives, and data backup storage systems, among others.
The processing unit 16 executes various functional applications and data processing by executing programs stored in the system memory 28, for example, to implement a compiling method provided by the embodiment of the present invention.
EXAMPLE five
An embodiment of the present invention further provides a computer-readable storage medium, on which a computer program is stored, where the computer program, when executed by a processor, implements a compiling method according to any of the above embodiments of the present invention, where the method includes:
determining a source file to be compiled according to a comparison result of the hash values between the source file and the backup source file or a comparison result of the hash values between the header file and the backup header file;
and recompiling the source file to be compiled.
Computer storage media for embodiments of the invention may employ any combination of one or more computer-readable media. The computer readable medium may be a computer readable signal medium or a computer readable storage medium. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any combination of the foregoing. More specific examples (a non-exhaustive list) of the computer readable storage medium would include the following: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the context of this document, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
A computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may also be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C + + or the like and conventional procedural programming languages, such as the "C" programming language or similar programming languages. The program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the case of a remote computer, the remote computer may be connected to the user's computer through any type of network, including a Local Area Network (LAN) or a Wide Area Network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet service provider).
It is to be noted that the foregoing is only illustrative of the preferred embodiments of the present invention and the technical principles employed. It will be understood by those skilled in the art that the present invention is not limited to the particular embodiments described herein, but is capable of various obvious changes, rearrangements and substitutions as will now become apparent to those skilled in the art without departing from the scope of the invention. Therefore, although the present invention has been described in greater detail by the above embodiments, the present invention is not limited to the above embodiments, and may include other equivalent embodiments without departing from the spirit of the present invention, and the scope of the present invention is determined by the scope of the appended claims.

Claims (10)

1. A method of compiling, the method comprising:
determining a source file to be compiled according to a comparison result of the hash value between the source file and the backup source file or a comparison result of the hash value between the header file and the backup header file;
and recompiling the source file to be compiled.
2. The method of claim 1, determining a source file to compile based on a comparison of hash values between the source file and the backup source file, comprising:
respectively determining hash values of a source file and a backup source file;
comparing hash values between the source files with the same file names and the backup source files;
and if the hash values are different, the corresponding source file is a changed source file, and the changed source file is used as a source file to be compiled.
3. The method of claim 2, prior to determining a source file to compile, further comprising:
traversing all file names of the backup source file according to all file names of the source file;
if the file name of the source file which is not traversed exists, the source file which is not traversed is a newly added source file, and a compiled file and a dependent file which correspond to the newly added source file are deleted;
and copying the newly added source file into a backup source file folder, and recompiling the newly added source file.
4. The method of claim 2, prior to determining a source file to compile, further comprising:
traversing all file names of the source file according to all file names of the backup source file;
if the file name of the backup source file which is not traversed exists, the backup source file which is not traversed is a missing source file;
and deleting the compiled file and the dependent file corresponding to the missing source file, and deleting the backup source file which is not traversed.
5. The method of claim 2, prior to determining a source file to compile, further comprising:
judging whether the currently generated compiled file and the dependent file correspond to the source file one by one,
and if the active file does not have the corresponding compiled file and the dependency file, recompiling the source file.
6. The method of claim 1, wherein determining the source file to be compiled based on the comparison of the hash values between the header file and the backup header file comprises:
respectively determining hash values of a header file and a backup header file;
comparing hash values between the head files with the same file name and the backup head files;
if the hash values are different, the corresponding header file is a changed header file;
and determining an associated source file according to the changed header file, and taking the associated source file as a source file to be compiled.
7. The method of claim 6, after determining the source file to compile, further comprising:
traversing all file names of the backup head files according to all head file names of the source files;
and if the header file name which is not traversed exists, the header file which is not traversed is a newly added header file, and the newly added header file is copied into the backup header folder.
8. The method of claim 6, after determining the source file to compile, further comprising:
traversing all the head file names of the source file according to all the file names of the backup head files;
and if the file name of the backup head file which is not traversed exists, taking the backup head file which is not traversed as a missing head file, and deleting the backup head file which is not traversed.
9. A compiling apparatus characterized in that the apparatus comprises:
the determining module is used for determining a source file to be compiled according to a comparison result of the hash value between the source file and the backup source file or a comparison result of the hash value between the header file and the backup header file;
and the compiling module is used for recompiling the source file to be compiled.
10. A compiling device characterized in that the compiling device comprises:
one or more processors;
a storage device for storing one or more programs,
when executed by the one or more processors, cause the one or more processors to implement a compilation method as recited in any of claims 1-8.
CN202010838882.4A 2020-08-19 2020-08-19 Compiling method, device and equipment Pending CN112114811A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010838882.4A CN112114811A (en) 2020-08-19 2020-08-19 Compiling method, device and equipment

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010838882.4A CN112114811A (en) 2020-08-19 2020-08-19 Compiling method, device and equipment

Publications (1)

Publication Number Publication Date
CN112114811A true CN112114811A (en) 2020-12-22

Family

ID=73804778

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010838882.4A Pending CN112114811A (en) 2020-08-19 2020-08-19 Compiling method, device and equipment

Country Status (1)

Country Link
CN (1) CN112114811A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112783508A (en) * 2021-02-01 2021-05-11 北京百度网讯科技有限公司 File compiling method, device, equipment and storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20160026443A1 (en) * 2014-07-23 2016-01-28 International Business Machines Corporation Processing source file
CN105808273A (en) * 2014-12-30 2016-07-27 Tcl集团股份有限公司 Software upgrading method and software upgrading device
CN106325970A (en) * 2016-10-17 2017-01-11 宁德时代新能源科技股份有限公司 Compiling method and compiling system
CN109033442A (en) * 2018-08-16 2018-12-18 郑州云海信息技术有限公司 A kind of general file management method
CN109857380A (en) * 2019-01-25 2019-06-07 中国银行股份有限公司 A kind of workflow file compiling method and device

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20160026443A1 (en) * 2014-07-23 2016-01-28 International Business Machines Corporation Processing source file
CN105808273A (en) * 2014-12-30 2016-07-27 Tcl集团股份有限公司 Software upgrading method and software upgrading device
CN106325970A (en) * 2016-10-17 2017-01-11 宁德时代新能源科技股份有限公司 Compiling method and compiling system
CN109033442A (en) * 2018-08-16 2018-12-18 郑州云海信息技术有限公司 A kind of general file management method
CN109857380A (en) * 2019-01-25 2019-06-07 中国银行股份有限公司 A kind of workflow file compiling method and device

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112783508A (en) * 2021-02-01 2021-05-11 北京百度网讯科技有限公司 File compiling method, device, equipment and storage medium

Similar Documents

Publication Publication Date Title
US8458681B1 (en) Method and system for optimizing the object code of a program
US8972960B2 (en) Optimization of an application to reduce local memory usage
CN111240689B (en) Application program construction method, device, equipment and storage medium
US20200249925A1 (en) On-demand loading of dynamic scripting language code for reduced memory usage
CN111198868B (en) Intelligent database-dividing real-time data migration method and device
CN112559140B (en) Transaction control method, system, equipment and storage medium for data consistency
CN111258563A (en) Interface document generation method and device, storage medium and electronic equipment
CN110659210A (en) Information acquisition method and device, electronic equipment and storage medium
CN110727476B (en) Method, device, equipment and storage medium for generating authorization configuration file
WO2015003452A1 (en) Methods and systems for file processing
US20150020056A1 (en) Methods and systems for file processing
CN110990346A (en) File data processing method, device, equipment and storage medium based on block chain
CN114329366A (en) Network disk file control method and device, network disk and storage medium
CN114003269A (en) Component processing method and device, electronic equipment and storage medium
US9064042B2 (en) Instrumenting computer program code by merging template and target code methods
CN112631621A (en) Dependency package management method, device, server and storage medium
CN112114811A (en) Compiling method, device and equipment
CN109582318B (en) Processing method and device for Portobuf localization, terminal and storage medium
CN112069158A (en) Data restoration method, device, equipment and storage medium
CN116578282A (en) Code generation method, device, electronic equipment and medium
CN113672465A (en) Method, system, medium, terminal and unmanned aerial vehicle for generating process log system by process name
KR101476536B1 (en) The method and system for inspecting program
US11966322B2 (en) Preloading debug information based on the increment of application
CN113590225B (en) Mapping detection method and device, electronic equipment and storage medium
CN111273956B (en) Program module loading method, device, equipment and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination